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>2.0.0-SAXONHE-SNAPSHOT</version>
15
	<scm>
16
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-core-components/branches/saxonHE</developerConnection>
17
	</scm>
18

    
19
	<dependencies>
20

    
21
		<!-- spring -->
22
		<dependency>
23
			<groupId>org.springframework</groupId>
24
			<artifactId>spring-webmvc</artifactId>
25
			<version>${spring.version}</version>
26
		</dependency>
27
		<dependency>
28
			<groupId>org.quartz-scheduler</groupId>
29
			<artifactId>quartz</artifactId>
30
			<version>${quartz.version}</version>
31
		</dependency>
32
		<dependency>
33
			<groupId>org.springframework</groupId>
34
			<artifactId>spring-context</artifactId>
35
			<version>${spring.version}</version>
36
		</dependency>
37
		<dependency>
38
			<groupId>org.springframework</groupId>
39
			<artifactId>spring-beans</artifactId>
40
			<version>${spring.version}</version>
41
		</dependency>
42
		<dependency>
43
			<groupId>org.springframework</groupId>
44
			<artifactId>spring-context-support</artifactId>
45
			<version>${spring.version}</version>
46
		</dependency>
47

    
48
		<!-- misc -->
49
		<dependency>
50
			<groupId>com.google.guava</groupId>
51
			<artifactId>guava</artifactId>
52
			<version>${google.guava.version}</version>
53
		</dependency>
54
		<dependency>
55
			<groupId>net.sf.ehcache</groupId>
56
			<artifactId>ehcache-core</artifactId>
57
			<version>${ehcache.version}</version>
58
		</dependency>
59
		<dependency>
60
			<groupId>org.apache.lucene</groupId>
61
			<artifactId>lucene-queryparser</artifactId>
62
			<version>${apache.solr.version}</version>
63
		</dependency>
64
		<dependency>
65
			<groupId>org.z3950.zing</groupId>
66
			<artifactId>cql-java</artifactId>
67
			<version>1.7</version>
68
		</dependency>
69
		<dependency>
70
			<groupId>org.antlr</groupId>
71
			<artifactId>stringtemplate</artifactId>
72
			<version>${stringtemplate.version}</version>
73
		</dependency>
74
		<dependency>
75
			<groupId>org.apache.commons</groupId>
76
			<artifactId>commons-lang3</artifactId>
77
			<version>${commons.lang.version}</version>
78
		</dependency>
79
		<dependency>
80
			<groupId>commons-io</groupId>
81
			<artifactId>commons-io</artifactId>
82
			<version>${commons.io.version}</version>
83
		</dependency>
84
		<dependency>
85
			<groupId>com.google.code.gson</groupId>
86
			<artifactId>gson</artifactId>
87
			<version>${google.gson.version}</version>
88
		</dependency>
89
		<dependency>
90
			<groupId>org.apache.httpcomponents</groupId>
91
			<artifactId>httpclient</artifactId>
92
			<version>${httpcomponents.httpclient.version}</version>
93
		</dependency>
94

    
95
		<!-- cxf -->
96
		<dependency>
97
			<groupId>org.apache.cxf</groupId>
98
			<artifactId>cxf-core</artifactId>
99
			<version>${cxf.version}</version>
100
		</dependency>
101
		<dependency>
102
			<groupId>org.apache.cxf</groupId>
103
			<artifactId>cxf-rt-frontend-jaxws</artifactId>
104
			<version>${cxf.version}</version>
105
		</dependency>
106

    
107
		<!-- For tomcat7 -->
108
		<dependency>
109
			<groupId>javax.servlet</groupId>
110
			<artifactId>javax.servlet-api</artifactId>
111
			<version>${javax.servlet.version}</version>
112
			<scope>provided</scope>
113
		</dependency>
114
		<dependency>
115
			<groupId>org.apache.tomcat</groupId>
116
			<artifactId>tomcat-catalina</artifactId>
117
			<version>7.0.47</version>
118
			<scope>provided</scope>
119
		</dependency>
120
		<dependency>
121
			<groupId>commons-codec</groupId>
122
			<artifactId>commons-codec</artifactId>
123
			<version>${commons.codec.version}</version>
124
		</dependency>
125
		<!--<dependency>-->
126
			<!--<groupId>saxonica</groupId>-->
127
			<!--<artifactId>saxon</artifactId>-->
128
			<!--<version>${saxon.version}</version>-->
129
		<!--</dependency>-->
130

    
131
		<!--&lt;!&ndash; libraries for XML management &ndash;&gt;-->
132
		<!--<dependency>-->
133
			<!--<groupId>saxonica</groupId>-->
134
			<!--<artifactId>saxon-dom</artifactId>-->
135
			<!--<version>${saxon.version}</version>-->
136
		<!--</dependency>-->
137
		<dependency>
138
			<groupId>net.sf.saxon</groupId>
139
			<artifactId>Saxon-HE</artifactId>
140
			<version>9.5.1-5</version>
141
		</dependency>
142

    
143
		<dependency>
144
			<groupId>jaxen</groupId>
145
			<artifactId>jaxen</artifactId>
146
			<version>1.1.6</version>
147
		</dependency>
148
		<dependency>
149
			<groupId>dom4j</groupId>
150
			<artifactId>dom4j</artifactId>
151
			<version>${dom4j.version}</version>
152
			<exclusions>
153
				<exclusion>
154
					<groupId>xml-apis</groupId>
155
					<artifactId>xml-apis</artifactId>
156
				</exclusion>
157
			</exclusions>
158
		</dependency>
159
		<dependency>
160
			<groupId>com.ximpleware</groupId>
161
			<artifactId>vtd-xml</artifactId>
162
			<version>${vtd.version}</version>
163
		</dependency>
164
		<dependency>
165
			<groupId>com.mycila</groupId>
166
			<artifactId>xmltool</artifactId>
167
			<version>3.3</version>
168
		</dependency>
169
		<dependency>
170
			<groupId>org.mongodb</groupId>
171
			<artifactId>mongo-java-driver</artifactId>
172
			<version>${mongodb.driver.version}</version>
173
		</dependency>
174
		<!-- TODO: Can we avoid using Joda time and use the new library from Java? (see MongoCqlTranslator) -->
175
		<dependency>
176
			<groupId>joda-time</groupId>
177
			<artifactId>joda-time</artifactId>
178
			<version>[2.3, 3.0)</version>
179
		</dependency>
180

    
181
		<!-- tests -->
182
		<dependency>
183
			<groupId>org.mockito</groupId>
184
			<artifactId>mockito-core</artifactId>
185
			<version>${mockito.version}</version>
186
			<scope>test</scope>
187
		</dependency>
188
		<dependency>
189
			<groupId>junit</groupId>
190
			<artifactId>junit</artifactId>
191
			<version>${junit.version}</version>
192
			<scope>test</scope>
193
		</dependency>
194
		<dependency>
195
			<groupId>org.springframework</groupId>
196
			<artifactId>spring-test</artifactId>
197
			<version>${spring.version}</version>
198
			<optional>false</optional>
199
		</dependency>
200

    
201

    
202
	</dependencies>
203
</project>
    (1-1/1)