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-core-components</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-core-components/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-context</artifactId>
28
			<version>${spring.version}</version>
29
		</dependency>
30
		<dependency>
31
			<groupId>org.springframework</groupId>
32
			<artifactId>spring-webmvc</artifactId>
33
			<version>${spring.version}</version>
34
		</dependency>
35
		<dependency>
36
			<groupId>org.quartz-scheduler</groupId>
37
			<artifactId>quartz</artifactId>
38
			<version>2.2.2</version>
39
		</dependency>
40
		<dependency>
41
			<groupId>org.springframework</groupId>
42
			<artifactId>spring-context</artifactId>
43
			<version>${spring.version}</version>
44
		</dependency>
45
		<dependency>
46
			<groupId>org.springframework</groupId>
47
			<artifactId>spring-beans</artifactId>
48
			<version>${spring.version}</version>
49
		</dependency>
50
		<dependency>
51
			<groupId>org.springframework</groupId>
52
			<artifactId>spring-context-support</artifactId>
53
			<version>${spring.version}</version>
54
		</dependency>
55
		<dependency>
56
			<groupId>javax.servlet</groupId>
57
			<artifactId>javax.servlet-api</artifactId>
58
			<version>LATEST</version>
59
			<scope>provided</scope>
60
		</dependency>
61
		<dependency>
62
			<groupId>org.antlr</groupId>
63
			<artifactId>stringtemplate</artifactId>
64
			<version>3.2</version>
65
		</dependency>
66
		<dependency>
67
			<groupId>commons-io</groupId>
68
			<artifactId>commons-io</artifactId>
69
			<version>${commons.io.version}</version>
70
		</dependency>
71
		<dependency>
72
			<groupId>org.apache.cxf</groupId>
73
			<artifactId>cxf-core</artifactId>
74
			<version>${cxf.version}</version>
75
		</dependency>
76
		<dependency>
77
			<groupId>org.apache.cxf</groupId>
78
			<artifactId>cxf-rt-frontend-jaxws</artifactId>
79
			<version>${cxf.version}</version>
80
		</dependency>
81
		<dependency>
82
			<groupId>com.google.code.gson</groupId>
83
			<artifactId>gson</artifactId>
84
			<version>${google.gson.version}</version>
85
		</dependency>
86
		<dependency>
87
			<groupId>org.apache.commons</groupId>
88
			<artifactId>commons-lang3</artifactId>
89
			<version>3.4</version>
90
		</dependency>
91
		<dependency>
92
			<groupId>dom4j</groupId>
93
			<artifactId>dom4j</artifactId>
94
			<version>1.6.1</version>
95
		</dependency>
96
		<dependency>
97
			<groupId>org.apache.cxf</groupId>
98
			<artifactId>cxf-rt-frontend-jaxws</artifactId>
99
			<version>${cxf.version}</version>
100
		</dependency>
101
		<dependency>
102
			<groupId>org.mockito</groupId>
103
			<artifactId>mockito-core</artifactId>
104
			<version>1.6</version>
105
			<scope>test</scope>
106
		</dependency>
107
		<dependency>
108
			<groupId>org.springframework</groupId>
109
			<artifactId>spring-test</artifactId>
110
			<version>${spring.version}</version>
111
			<optional>false</optional>
112
		</dependency>
113
		<dependency>
114
			<groupId>opensymphony</groupId>
115
			<artifactId>quartz</artifactId>
116
			<version>1.6.3</version>
117
		</dependency>
118
		<!-- For tomcat7 -->
119

    
120
		<dependency>
121
			<groupId>org.apache.tomcat</groupId>
122
			<artifactId>tomcat-catalina</artifactId>
123
			<version>7.0.47</version>
124
			<scope>provided</scope>
125
		</dependency>
126
		<dependency>
127
			<groupId>commons-codec</groupId>
128
			<artifactId>commons-codec</artifactId>
129
			<version>${commons.codec.version}</version>
130
		</dependency>
131
		<dependency>
132
			<groupId>saxonica</groupId>
133
			<artifactId>saxon-dom</artifactId>
134
			<version>9.1.0.8</version>
135
		</dependency>
136
		<dependency>
137
			<groupId>jaxen</groupId>
138
			<artifactId>jaxen</artifactId>
139
			<version>1.1.6</version>
140
		</dependency>
141
		<dependency>
142
			<groupId>saxonica</groupId>
143
			<artifactId>saxon</artifactId>
144
			<version>9.1.0.8</version>
145
		</dependency>
146
		<dependency>
147
			<groupId>junit</groupId>
148
			<artifactId>junit</artifactId>
149
			<version>${junit.version}</version>
150
			<scope>test</scope>
151
		</dependency>
152
		<dependency>
153
			<groupId>org.mockito</groupId>
154
			<artifactId>mockito-all</artifactId>
155
			<version>1.10.19</version>
156
		</dependency>
157
		<dependency>
158
			<groupId>com.google.guava</groupId>
159
			<artifactId>guava</artifactId>
160
			<version>18.0</version>
161
		</dependency>
162
		<dependency>
163
			<groupId>net.sf.ehcache</groupId>
164
			<artifactId>ehcache-core</artifactId>
165
			<version>2.6.2</version>
166
		</dependency>
167
		<dependency>
168
			<groupId>com.mycila</groupId>
169
			<artifactId>xmltool</artifactId>
170
			<version>3.3</version>
171
		</dependency>
172

    
173
		<dependency>
174
			<groupId>org.apache.lucene</groupId>
175
			<artifactId>lucene-queryparser</artifactId>
176
			<version>${apache.solr.version}</version>
177
		</dependency>
178
		<dependency>
179
			<groupId>org.z3950.zing</groupId>
180
			<artifactId>cql-java</artifactId>
181
			<version>1.7</version>
182
		</dependency>
183

    
184
	</dependencies>
185
</project>
    (1-1/1)