1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
3
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
4
|
<parent>
|
5
|
<groupId>eu.dnetlib</groupId>
|
6
|
<artifactId>dnet-parent</artifactId>
|
7
|
<version>2.0.0-SNAPSHOT</version>
|
8
|
<relativePath />
|
9
|
</parent>
|
10
|
<modelVersion>4.0.0</modelVersion>
|
11
|
<groupId>eu.dnetlib</groupId>
|
12
|
<artifactId>dnet-data-services</artifactId>
|
13
|
<packaging>jar</packaging>
|
14
|
<version>1.0.0-SNAPSHOT</version>
|
15
|
<scm>
|
16
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-data-services/trunk</developerConnection>
|
17
|
</scm>
|
18
|
|
19
|
|
20
|
<dependencies>
|
21
|
<!-- Dnet Dependencies -->
|
22
|
|
23
|
<dependency>
|
24
|
<groupId>eu.dnetlib</groupId>
|
25
|
<artifactId>dnet-core-components</artifactId>
|
26
|
<version>1.0.0-SNAPSHOT</version>
|
27
|
</dependency>
|
28
|
<dependency>
|
29
|
<groupId>eu.dnetlib</groupId>
|
30
|
<artifactId>dnet-core-services</artifactId>
|
31
|
<version>1.0.0-SNAPSHOT</version>
|
32
|
</dependency>
|
33
|
<dependency>
|
34
|
<groupId>org.springframework</groupId>
|
35
|
<artifactId>spring-test</artifactId>
|
36
|
<version>${spring.version}</version>
|
37
|
<scope>test</scope>
|
38
|
</dependency>
|
39
|
<dependency>
|
40
|
<groupId>org.codehaus.groovy</groupId>
|
41
|
<artifactId>groovy-all</artifactId>
|
42
|
<version>2.4.6</version>
|
43
|
</dependency>
|
44
|
<dependency>
|
45
|
<groupId>org.mockito</groupId>
|
46
|
<artifactId>mockito-core</artifactId>
|
47
|
<version>1.6</version>
|
48
|
<scope>test</scope>
|
49
|
</dependency>
|
50
|
|
51
|
<dependency>
|
52
|
<groupId>junit</groupId>
|
53
|
<artifactId>junit</artifactId>
|
54
|
<version>${junit.version}</version>
|
55
|
<scope>test</scope>
|
56
|
</dependency>
|
57
|
<dependency>
|
58
|
<groupId>org.mongodb</groupId>
|
59
|
<artifactId>mongo-java-driver</artifactId>
|
60
|
<version>${mongodb.driver.version}</version>
|
61
|
</dependency>
|
62
|
|
63
|
<dependency>
|
64
|
<groupId>commons-net</groupId>
|
65
|
<artifactId>commons-net</artifactId>
|
66
|
<version>3.3</version>
|
67
|
</dependency>
|
68
|
<dependency>
|
69
|
<groupId>com.jcraft</groupId>
|
70
|
<artifactId>jsch</artifactId>
|
71
|
<version>0.1.53</version>
|
72
|
</dependency>
|
73
|
|
74
|
<dependency>
|
75
|
<groupId>org.apache.commons</groupId>
|
76
|
<artifactId>commons-csv</artifactId>
|
77
|
<version>1.0</version>
|
78
|
</dependency>
|
79
|
|
80
|
<dependency>
|
81
|
<groupId>javax.servlet</groupId>
|
82
|
<artifactId>javax.servlet-api</artifactId>
|
83
|
<version>LATEST</version>
|
84
|
<scope>provided</scope>
|
85
|
</dependency>
|
86
|
<dependency>
|
87
|
<groupId>org.apache.commons</groupId>
|
88
|
<artifactId>commons-compress</artifactId>
|
89
|
<version>1.6</version>
|
90
|
</dependency>
|
91
|
|
92
|
<dependency>
|
93
|
<groupId>org.svenson</groupId>
|
94
|
<artifactId>svenson-json</artifactId>
|
95
|
<version>[1.4.0,1.5.0)</version>
|
96
|
</dependency>
|
97
|
|
98
|
<dependency>
|
99
|
<groupId>com.sun.xsom</groupId>
|
100
|
<artifactId>xsom</artifactId>
|
101
|
<version>20110809</version>
|
102
|
</dependency>
|
103
|
|
104
|
|
105
|
<dependency>
|
106
|
<groupId>oro</groupId>
|
107
|
<artifactId>oro</artifactId>
|
108
|
<version>2.0.8</version>
|
109
|
</dependency>
|
110
|
|
111
|
|
112
|
</dependencies>
|
113
|
|
114
|
</project>
|
115
|
|