Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
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>2.0.0</version>
7
		<relativePath />
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-data-services</artifactId>
12
	<packaging>jar</packaging>
13
	<version>2.0.1-SAXONHE-SNAPSHOT</version>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-data-services/branches/saxonHE</developerConnection>
16
	</scm>
17

    
18

    
19
	<dependencies>
20
		<!-- Dnet Dependencies -->
21

    
22
		<dependency>
23
			<groupId>eu.dnetlib</groupId>
24
			<artifactId>dnet-core-components</artifactId>
25
			<version>[2.0.0-SAXONHE, 3.0.0-SAXONHE)</version>
26
		</dependency>
27
		<dependency>
28
			<groupId>eu.dnetlib</groupId>
29
			<artifactId>dnet-core-services</artifactId>
30
			<version>[2.0.0-SAXONHE, 3.0.0-SAXONHE)</version>
31
		</dependency>
32
		<dependency>
33
			<groupId>org.springframework</groupId>
34
			<artifactId>spring-test</artifactId>
35
			<version>${spring.version}</version>
36
			<scope>test</scope>
37
		</dependency>
38
		<dependency>
39
			<groupId>org.codehaus.groovy</groupId>
40
			<artifactId>groovy-all</artifactId>
41
			<version>2.4.6</version>
42
		</dependency>
43
		<dependency>
44
			<groupId>org.mockito</groupId>
45
			<artifactId>mockito-core</artifactId>
46
			<version>1.6</version>
47
			<scope>test</scope>
48
		</dependency>
49

    
50
		<dependency>
51
			<groupId>junit</groupId>
52
			<artifactId>junit</artifactId>
53
			<version>${junit.version}</version>
54
			<scope>test</scope>
55
		</dependency>
56
		<dependency>
57
			<groupId>org.mongodb</groupId>
58
			<artifactId>mongo-java-driver</artifactId>
59
			<version>${mongodb.driver.version}</version>
60
		</dependency>
61

    
62
		<dependency>
63
			<groupId>commons-net</groupId>
64
			<artifactId>commons-net</artifactId>
65
			<version>3.3</version>
66
		</dependency>
67
		<dependency>
68
			<groupId>com.jcraft</groupId>
69
			<artifactId>jsch</artifactId>
70
			<version>0.1.53</version>
71
		</dependency>
72

    
73
		<dependency>
74
			<groupId>org.apache.commons</groupId>
75
			<artifactId>commons-csv</artifactId>
76
			<version>1.0</version>
77
		</dependency>
78

    
79
		<dependency>
80
			<groupId>javax.servlet</groupId>
81
			<artifactId>javax.servlet-api</artifactId>
82
			<version>${javax.servlet.version}</version>
83
			<scope>provided</scope>
84
		</dependency>
85
		<dependency>
86
			<groupId>org.apache.commons</groupId>
87
			<artifactId>commons-compress</artifactId>
88
			<version>1.6</version>
89
		</dependency>
90

    
91
		<dependency>
92
			<groupId>org.svenson</groupId>
93
			<artifactId>svenson-json</artifactId>
94
			<version>[1.4.0,1.5.0)</version>
95
		</dependency>
96

    
97
		<dependency>
98
			<groupId>com.sun.xsom</groupId>
99
			<artifactId>xsom</artifactId>
100
			<version>20110809</version>
101
		</dependency>
102

    
103

    
104
		<dependency>
105
			<groupId>oro</groupId>
106
			<artifactId>oro</artifactId>
107
			<version>2.0.8</version>
108
		</dependency>
109

    
110

    
111
	</dependencies>
112

    
113
</project>
114
    
(2-2/2)