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-information-service</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-information-service/branches/saxonHE</developerConnection>
16
	</scm>
17

    
18
	<repositories>
19
		<repository>
20
			<id>exist</id>
21
			<url>https://raw.github.com/eXist-db/mvn-repo/master/</url>
22
		</repository>
23

    
24
	</repositories>
25
	<dependencies>
26
		<!-- Dnet Dependencies -->
27

    
28
		<dependency>
29
			<groupId>eu.dnetlib</groupId>
30
			<artifactId>dnet-core-components</artifactId>
31
			<version>[2.0.0-SAXONHE, 3.0.0-SAXONHE)</version>
32
		</dependency>
33

    
34
		<dependency>
35
			<groupId>org.exist-db</groupId>
36
			<artifactId>exist-core</artifactId>
37
			<version>${exist.version}</version>
38
			<exclusions>
39
				<exclusion>
40
					<groupId>asm</groupId>
41
					<artifactId>asm</artifactId>
42
				</exclusion>
43
				<exclusion>
44
					<groupId>antlr</groupId>
45
					<artifactId>antlr</artifactId>
46
				</exclusion>
47
				<exclusion>
48
					<groupId>org.aspectj</groupId>
49
					<artifactId>aspectjrt</artifactId>
50
				</exclusion>
51
				<exclusion>
52
					<groupId>org.eclipse.jetty</groupId>
53
					<artifactId>jetty-security</artifactId>
54
				</exclusion>
55
				<exclusion>
56
					<groupId>org.eclipse.jetty</groupId>
57
					<artifactId>jetty-server</artifactId>
58
				</exclusion>
59
				<exclusion>
60
					<groupId>org.eclipse.jetty</groupId>
61
					<artifactId>jetty-util</artifactId>
62
				</exclusion>
63
				<exclusion>
64
					<artifactId>javax.servlet</artifactId>
65
					<groupId>org.eclipse.jetty.orbit</groupId>
66
				</exclusion>
67
				<exclusion>
68
					<groupId>xalan</groupId>
69
					<artifactId>xalan</artifactId>
70
				</exclusion>
71
			</exclusions>
72
		</dependency>
73
		<dependency>
74
			<groupId>javax.servlet</groupId>
75
			<artifactId>javax.servlet-api</artifactId>
76
			<version>${javax.servlet.version}</version>
77
			<scope>provided</scope>
78
		</dependency>
79

    
80
		<dependency>
81
			<artifactId>exist-start</artifactId>
82
			<groupId>org.exist-db</groupId>
83
			<version>${exist.version}</version>
84
		</dependency>
85

    
86
		<dependency>
87
			<groupId>org.aspectj</groupId>
88
			<artifactId>aspectjrt</artifactId>
89
			<version>[1.8.9]</version>
90
		</dependency>
91

    
92

    
93
		<!-- DB Dependencies -->
94

    
95
		<dependency>
96
			<groupId>org.springframework</groupId>
97
			<artifactId>spring-beans</artifactId>
98
			<version>${spring.version}</version>
99
		</dependency>
100
		<dependency>
101
			<groupId>org.springframework</groupId>
102
			<artifactId>spring-jdbc</artifactId>
103
			<version>${spring.version}</version>
104
		</dependency>
105
		<dependency>
106
			<groupId>org.springframework</groupId>
107
			<artifactId>spring-tx</artifactId>
108
			<version>${spring.version}</version>
109
		</dependency>
110
		<dependency>
111
			<groupId>org.springframework</groupId>
112
			<artifactId>spring-orm</artifactId>
113
			<version>${spring.version}</version>
114
		</dependency>
115
		<dependency>
116
			<groupId>org.postgresql</groupId>
117
			<artifactId>jdbc4driver</artifactId>
118
			<version>8.3</version>
119
		</dependency>
120

    
121
		<dependency>
122
			<groupId>org.xerial</groupId>
123
			<artifactId>sqlite-jdbc</artifactId>
124
			<version>3.8.11.2</version>
125
		</dependency>
126

    
127
		<dependency>
128
			<groupId>org.hibernate</groupId>
129
			<artifactId>hibernate-entitymanager</artifactId>
130
			<version>5.0.8.Final</version>
131
			<exclusions>
132
				<exclusion>
133
					<groupId>antlr</groupId>
134
					<artifactId>antlr</artifactId>
135
				</exclusion>
136
			</exclusions>
137
		</dependency>
138

    
139

    
140

    
141

    
142
		<dependency>
143
			<groupId>org.apache.commons</groupId>
144
			<artifactId>commons-dbcp2</artifactId>
145
			<version>2.1.1</version>
146
		</dependency>
147
		<dependency>
148
			<groupId>commons-beanutils</groupId>
149
			<artifactId>commons-beanutils</artifactId>
150
			<version>1.8.3</version>
151
		</dependency>
152

    
153
		<dependency>
154
			<groupId>org.aspectj</groupId>
155
			<artifactId>aspectjweaver</artifactId>
156
			<version>1.6.3</version>
157
			<scope>test</scope>
158
		</dependency>
159
		<dependency>
160
			<groupId>hsqldb</groupId>
161
			<artifactId>hsqldb</artifactId>
162
			<version>1.8.0.7</version>
163
			<scope>test</scope>
164
		</dependency>
165
		<dependency>
166
			<groupId>junit</groupId>
167
			<artifactId>junit</artifactId>
168
			<version>${junit.version}</version>
169
			<scope>test</scope>
170
		</dependency>
171
		<dependency>
172
			<groupId>org.mockito</groupId>
173
			<artifactId>mockito-core</artifactId>
174
			<version>${mockito.version}</version>
175
			<scope>test</scope>
176
		</dependency>
177
		<dependency>
178
			<groupId>xml-apis</groupId>
179
			<artifactId>xml-apis</artifactId>
180
			<version>1.4.01</version>
181
			<scope>test</scope>
182
		</dependency>
183
		<dependency>
184
			<groupId>commons-collections</groupId>
185
			<artifactId>commons-collections</artifactId>
186
			<version>3.2.2</version>
187
			<scope>test</scope>
188
		</dependency>
189

    
190

    
191
	</dependencies>
192

    
193

    
194
</project>
(2-2/2)