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>dnet45-parent</artifactId>
6
		<version>1.0.0</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>2.0.0</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>[2.0.0,)</version>
23
		</dependency>
24
		<!--
25
        <dependency>
26
            <groupId>eu.dnetlib</groupId>
27
            <artifactId>uoa-utils</artifactId>
28
            <version>[2.0.0-SNAPSHOT,)</version>
29
        </dependency>
30
		-->
31
		<dependency>
32
			<groupId>eu.dnetlib</groupId>
33
			<artifactId>uoa-clients</artifactId>
34
			<version>[2.0.0,)</version>
35
		</dependency>
36
        <dependency>
37
            <groupId>org.apache.ant</groupId>
38
            <artifactId>ant</artifactId>
39
            <version>1.8.2</version>
40
        </dependency>
41

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

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

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

    
87

    
88
    </dependencies>
89
</project>
(2-2/2)