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-common-utils</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-common-utils/trunk</developerConnection>
17
	</scm>
18

    
19
	<dependencies>
20
		<dependency>
21
			<groupId>org.apache.commons</groupId>
22
			<artifactId>commons-lang3</artifactId>
23
			<version>${commons.lang.version}</version>
24
		</dependency>
25
		<dependency>
26
			<groupId>org.springframework</groupId>
27
			<artifactId>spring-webmvc</artifactId>
28
			<version>${spring.version}</version>
29
		</dependency>
30
		<!--  <dependency>
31
			<groupId>org.quartz-scheduler</groupId>
32
			<artifactId>quartz</artifactId>
33
			<version>2.2.2</version>
34
			<exclusions>
35
				<exclusion>
36
					<groupId>org.slf4j</groupId>
37
					<artifactId>slf4j-api</artifactId>
38
				</exclusion>
39
			</exclusions>
40
		</dependency> -->
41
		<dependency>
42
			<groupId>org.springframework</groupId>
43
			<artifactId>spring-context</artifactId>
44
			<version>${spring.version}</version>
45
		</dependency>
46
		<dependency>
47
			<groupId>org.springframework</groupId>
48
			<artifactId>spring-beans</artifactId>
49
			<version>${spring.version}</version>
50
		</dependency>
51
		<dependency>
52
			<groupId>org.springframework</groupId>
53
			<artifactId>spring-context-support</artifactId>
54
			<version>${spring.version}</version>
55
		</dependency>
56
		<dependency>
57
			<groupId>javax.servlet</groupId>
58
			<artifactId>javax.servlet-api</artifactId>
59
			<version>3.0.1</version>
60
			<scope>provided</scope>
61
		</dependency>
62
		<dependency>
63
			<groupId>org.antlr</groupId>
64
			<artifactId>stringtemplate</artifactId>
65
			<version>3.2</version>
66
		</dependency>
67
		<dependency>
68
			<groupId>commons-io</groupId>
69
			<artifactId>commons-io</artifactId>
70
			<version>${commons.io.version}</version>
71
		</dependency>
72
		
73
		<dependency>
74
			<groupId>com.google.code.gson</groupId>
75
			<artifactId>gson</artifactId>
76
			<version>${google.gson.version}</version>
77
		</dependency>
78
		<dependency>
79
			<groupId>org.apache.httpcomponents</groupId>
80
			<artifactId>httpclient</artifactId>
81
			<version>${httpcomponents.httpclient.version}</version>
82
		</dependency>
83
		<dependency>
84
			<groupId>dom4j</groupId>
85
			<artifactId>dom4j</artifactId>
86
			<version>1.6.1</version>
87
		</dependency>
88
		
89
		<dependency>
90
			<groupId>org.mockito</groupId>
91
			<artifactId>mockito-core</artifactId>
92
			<version>1.6</version>
93
			<scope>test</scope>
94
		</dependency>
95
		
96
		<!-- For tomcat7 -->
97

    
98
		
99
		<dependency>
100
			<groupId>commons-codec</groupId>
101
			<artifactId>commons-codec</artifactId>
102
			<version>${commons.codec.version}</version>
103
		</dependency>
104
		<dependency>
105
			<groupId>saxonica</groupId>
106
			<artifactId>saxon-dom</artifactId>
107
			<version>9.1.0.8</version>
108
		</dependency>
109
		<dependency>
110
			<groupId>jaxen</groupId>
111
			<artifactId>jaxen</artifactId>
112
			<version>1.1.6</version>
113
		</dependency>
114
		<dependency>
115
			<groupId>saxonica</groupId>
116
			<artifactId>saxon</artifactId>
117
			<version>9.1.0.8</version>
118
		</dependency>
119
		<dependency>
120
			<groupId>junit</groupId>
121
			<artifactId>junit</artifactId>
122
			<version>${junit.version}</version>
123
			<scope>test</scope>
124
		</dependency>
125
		<dependency>
126
			<groupId>org.mockito</groupId>
127
			<artifactId>mockito-all</artifactId>
128
			<version>1.10.19</version>
129
		</dependency>
130
		<dependency>
131
			<groupId>com.google.guava</groupId>
132
			<artifactId>guava</artifactId>
133
			<version>18.0</version>
134
		</dependency>
135
		<dependency>
136
			<groupId>net.sf.ehcache</groupId>
137
			<artifactId>ehcache-core</artifactId>
138
			<version>2.6.2</version>
139
			<exclusions>
140
				<exclusion>
141
					<groupId>org.slf4j</groupId>
142
					<artifactId>slf4j-api</artifactId>
143
				</exclusion>
144
			</exclusions>
145
		</dependency>
146
		<dependency>
147
			<groupId>com.mycila</groupId>
148
			<artifactId>xmltool</artifactId>
149
			<version>3.3</version>
150
		</dependency>
151
		<dependency>
152
			<groupId>javax.validation</groupId>
153
			<artifactId>validation-api</artifactId>
154
			<version>1.1.0.Final</version>
155
		</dependency>
156
	</dependencies>
157
</project>
    (1-1/1)