Project

General

Profile

1
<?xml version="1.0" ?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet-parent</artifactId>
6
		<version>1.0.0-SNAPSHOT</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>uoa-stats-service</artifactId>
11
	<packaging>jar</packaging>
12
	<version>1.2.0-SNAPSHOT</version>
13
	<dependencies>
14
		<dependency>
15
			<groupId>junit</groupId>
16
			<artifactId>junit</artifactId>
17
			<version>${junit.version}</version>
18
		</dependency>
19
		<dependency>
20
			<groupId>eu.dnetlib</groupId>
21
			<artifactId>uoa-commons</artifactId>
22
			<version>[1.0.0-SNAPSHOT,)</version>
23
		</dependency>
24
        <dependency>
25
            <groupId>eu.dnetlib</groupId>
26
            <artifactId>uoa-utils</artifactId>
27
            <version>[1.0.0-SNAPSHOT,)</version>
28
        </dependency>
29
		<dependency>
30
			<groupId>eu.dnetlib</groupId>
31
			<artifactId>uoa-clients</artifactId>
32
			<version>[1.0.0-SNAPSHOT,)</version>
33
		</dependency>
34
        <dependency>
35
            <groupId>org.apache.ant</groupId>
36
            <artifactId>ant</artifactId>
37
            <version>1.8.2</version>
38
        </dependency>
39

    
40
		<dependency>
41
			<groupId>org.springframework</groupId>
42
			<artifactId>spring-jdbc</artifactId>
43
			<version>${spring.version}</version>
44
		</dependency>
45
		<dependency>
46
			<groupId>org.springframework</groupId>
47
			<artifactId>spring-tx</artifactId>
48
			<version>${spring.version}</version>
49
		</dependency>
50
        <dependency>
51
            <groupId>org.mockito</groupId>
52
            <artifactId>mockito-core</artifactId>
53
            <version>1.9.5</version>
54
            <scope>test</scope>
55
        </dependency>
56
        <dependency>
57
            <groupId>org.springframework</groupId>
58
            <artifactId>spring-test</artifactId>
59
            <version>${spring.version}</version>
60
            <scope>test</scope>
61
        </dependency>
62

    
63
		<dependency>
64
			<groupId>eu.dnetlib</groupId>
65
			<artifactId>cnr-blackboard-common</artifactId>
66
			<version>[1.0.0,2.0.0)</version>
67
		</dependency>
68
		<dependency>
69
			<groupId>postgresql</groupId>
70
			<artifactId>postgresql</artifactId>
71
			<version>9.1-901.jdbc4</version>
72
		</dependency>
73

    
74
        <dependency>
75
            <groupId>javax.mail</groupId>
76
            <artifactId>mail</artifactId>
77
            <version>1.4</version>
78
        </dependency>
79
        <!--<dependency>-->
80
            <!--<groupId>javax.activation</groupId>-->
81
            <!--<artifactId>activation</artifactId>-->
82
            <!--<version>1.0.2</version>-->
83
        <!--</dependency>-->
84

    
85

    
86
    </dependencies>
87
</project>
(2-2/2)