Project

General

Profile

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
		<dependency>
51
			<groupId>org.springframework.data</groupId>
52
			<artifactId>spring-data-mongodb</artifactId>
53
			<version>1.9.3.RELEASE</version>
54
			<exclusions>
55
				<exclusion>
56
					<groupId>org.springframework</groupId>
57
					<artifactId>spring-expression</artifactId>
58
				</exclusion>
59

    
60
				<exclusion>
61
					<groupId>org.slf4j</groupId>
62
					<artifactId>slf4j-api</artifactId>
63
				</exclusion>
64
				<exclusion>
65
					<groupId>org.slf4j</groupId>
66
					<artifactId>jcl-over-slf4j</artifactId>
67
				</exclusion>
68
			</exclusions>
69
		</dependency>
70

    
71
		<dependency>
72
			<groupId>junit</groupId>
73
			<artifactId>junit</artifactId>
74
			<version>${junit.version}</version>
75
			<scope>test</scope>
76
		</dependency>
77
		<dependency>
78
			<groupId>org.mongodb</groupId>
79
			<artifactId>mongo-java-driver</artifactId>
80
			<version>${mongodb.driver.version}</version>
81
		</dependency>
82

    
83
		<dependency>
84
			<groupId>commons-net</groupId>
85
			<artifactId>commons-net</artifactId>
86
			<version>3.3</version>
87
		</dependency>
88
		<dependency>
89
			<groupId>com.jcraft</groupId>
90
			<artifactId>jsch</artifactId>
91
			<version>0.1.53</version>
92
		</dependency>
93

    
94
		<dependency>
95
			<groupId>org.apache.commons</groupId>
96
			<artifactId>commons-csv</artifactId>
97
			<version>1.0</version>
98
		</dependency>
99

    
100
		<dependency>
101
			<groupId>javax.servlet</groupId>
102
			<artifactId>javax.servlet-api</artifactId>
103
			<version>LATEST</version>
104
			<scope>provided</scope>
105
		</dependency>
106
		<dependency>
107
			<groupId>org.apache.commons</groupId>
108
			<artifactId>commons-compress</artifactId>
109
			<version>1.6</version>
110
		</dependency>
111

    
112
		<dependency>
113
			<groupId>org.svenson</groupId>
114
			<artifactId>svenson-json</artifactId>
115
			<version>[1.4.0,1.5.0)</version>
116
		</dependency>
117

    
118
		<dependency>
119
			<groupId>com.sun.xsom</groupId>
120
			<artifactId>xsom</artifactId>
121
			<version>20110809</version>
122
		</dependency>
123

    
124

    
125
		<dependency>
126
			<groupId>oro</groupId>
127
			<artifactId>oro</artifactId>
128
			<version>2.0.8</version>
129
		</dependency>
130

    
131
		<dependency>
132
			<groupId>de.flapdoodle.embed</groupId>
133
			<artifactId>de.flapdoodle.embed.mongo</artifactId>
134
			<version>2.0.0</version>
135
			<scope>test</scope>
136
		</dependency>
137

    
138

    
139

    
140
	</dependencies>
141

    
142
</project>
143
    
(2-2/2)