1
|
<?xml version="1.0"?>
|
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>dnet45-parent</artifactId>
|
6
|
<version>1.0.0</version>
|
7
|
</parent>
|
8
|
<modelVersion>4.0.0</modelVersion>
|
9
|
<groupId>eu.dnetlib</groupId>
|
10
|
<artifactId>uoa-search</artifactId>
|
11
|
<packaging>jar</packaging>
|
12
|
<version>3.9.6-SNAPSHOT</version>
|
13
|
<scm>
|
14
|
<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/uoa-search/branches/uoa-search-pre-3.9.4</developerConnection>
|
15
|
</scm>
|
16
|
|
17
|
<repositories>
|
18
|
<!-- Cloudera Repositories -->
|
19
|
<repository>
|
20
|
<snapshots>
|
21
|
<enabled>false</enabled>
|
22
|
</snapshots>
|
23
|
<id>cloudera-central</id>
|
24
|
<name>cloundera-libs-release</name>
|
25
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
|
26
|
</repository>
|
27
|
<repository>
|
28
|
<id>cloudera-snapshots</id>
|
29
|
<name>cloudera-libs-snapshot</name>
|
30
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
|
31
|
</repository>
|
32
|
<repository>
|
33
|
<id>typesafe</id>
|
34
|
<name>typesafe-releases</name>
|
35
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
|
36
|
</repository>
|
37
|
</repositories>
|
38
|
|
39
|
<dependencies>
|
40
|
<dependency>
|
41
|
<groupId>junit</groupId>
|
42
|
<artifactId>junit</artifactId>
|
43
|
<version>${junit.version}</version>
|
44
|
<scope>test</scope>
|
45
|
</dependency>
|
46
|
<dependency>
|
47
|
<groupId>eu.dnetlib</groupId>
|
48
|
<artifactId>uoa-commons</artifactId>
|
49
|
<version>[2.0.0, 3.0.0)</version>
|
50
|
</dependency>
|
51
|
<dependency>
|
52
|
<groupId>org.mockito</groupId>
|
53
|
<artifactId>mockito-all</artifactId>
|
54
|
<version>1.6</version>
|
55
|
</dependency>
|
56
|
<dependency>
|
57
|
<groupId>org.apache.solr</groupId>
|
58
|
<artifactId>solr-solrj</artifactId>
|
59
|
<version>7.2.1</version>
|
60
|
<exclusions>
|
61
|
<exclusion>
|
62
|
<groupId>org.apache.zookeeper</groupId>
|
63
|
<artifactId>zookeeper</artifactId>
|
64
|
</exclusion>
|
65
|
</exclusions>
|
66
|
</dependency>
|
67
|
<dependency>
|
68
|
<groupId>org.apache.zookeeper</groupId>
|
69
|
<artifactId>zookeeper</artifactId>
|
70
|
<version>3.4.5-cdh4.3.0</version>
|
71
|
</dependency>
|
72
|
<dependency>
|
73
|
<groupId>eu.dnetlib</groupId>
|
74
|
<artifactId>cnr-cql-utils</artifactId>
|
75
|
<version>[2.0.0, 3.0.0)</version>
|
76
|
<scope>compile</scope>
|
77
|
</dependency>
|
78
|
<dependency>
|
79
|
<groupId>eu.dnetlib</groupId>
|
80
|
<artifactId>cnr-blackboard-common</artifactId>
|
81
|
<version>[2.2.1, 3.0.0)</version>
|
82
|
</dependency>
|
83
|
|
84
|
<!-- Spring MVC framework -->
|
85
|
<dependency>
|
86
|
<groupId>org.springframework</groupId>
|
87
|
<artifactId>spring-webmvc</artifactId>
|
88
|
<version>${spring.version}</version>
|
89
|
</dependency>
|
90
|
|
91
|
<dependency>
|
92
|
<groupId>org.apache.velocity</groupId>
|
93
|
<artifactId>velocity</artifactId>
|
94
|
<version>1.7</version>
|
95
|
</dependency>
|
96
|
|
97
|
<dependency>
|
98
|
<groupId>asm</groupId>
|
99
|
<artifactId>asm</artifactId>
|
100
|
<version>3.3.1</version>
|
101
|
</dependency>
|
102
|
<dependency>
|
103
|
<groupId>com.sun.jersey</groupId>
|
104
|
<artifactId>jersey-bundle</artifactId>
|
105
|
<version>1.19</version>
|
106
|
</dependency>
|
107
|
<dependency>
|
108
|
<groupId>org.json</groupId>
|
109
|
<artifactId>json</artifactId>
|
110
|
<version>20140107</version>
|
111
|
</dependency>
|
112
|
<dependency>
|
113
|
<groupId>com.sun.jersey</groupId>
|
114
|
<artifactId>jersey-server</artifactId>
|
115
|
<version>1.19</version>
|
116
|
</dependency>
|
117
|
<dependency>
|
118
|
<groupId>com.sun.jersey</groupId>
|
119
|
<artifactId>jersey-core</artifactId>
|
120
|
<version>1.19</version>
|
121
|
</dependency>
|
122
|
<dependency>
|
123
|
<groupId>commons-validator</groupId>
|
124
|
<artifactId>commons-validator</artifactId>
|
125
|
<version>1.6</version>
|
126
|
</dependency>
|
127
|
<dependency>
|
128
|
<groupId>org.eclipse.persistence</groupId>
|
129
|
<artifactId>org.eclipse.persistence.moxy</artifactId>
|
130
|
<version>2.5.0</version>
|
131
|
</dependency>
|
132
|
<dependency>
|
133
|
<groupId>com.sun.jersey.contribs</groupId>
|
134
|
<artifactId>jersey-spring</artifactId>
|
135
|
<version>1.8</version>
|
136
|
<exclusions>
|
137
|
<exclusion>
|
138
|
<groupId>org.springframework</groupId>
|
139
|
<artifactId>spring</artifactId>
|
140
|
</exclusion>
|
141
|
<exclusion>
|
142
|
<groupId>org.springframework</groupId>
|
143
|
<artifactId>spring-core</artifactId>
|
144
|
</exclusion>
|
145
|
<exclusion>
|
146
|
<groupId>org.springframework</groupId>
|
147
|
<artifactId>spring-web</artifactId>
|
148
|
</exclusion>
|
149
|
<exclusion>
|
150
|
<groupId>org.springframework</groupId>
|
151
|
<artifactId>spring-beans</artifactId>
|
152
|
</exclusion>
|
153
|
<exclusion>
|
154
|
<groupId>org.springframework</groupId>
|
155
|
<artifactId>spring-context</artifactId>
|
156
|
</exclusion>
|
157
|
<exclusion>
|
158
|
<groupId>org.springframework</groupId>
|
159
|
<artifactId>spring-utils</artifactId>
|
160
|
</exclusion>
|
161
|
<exclusion>
|
162
|
<groupId>org.springframework</groupId>
|
163
|
<artifactId>spring-aop</artifactId>
|
164
|
</exclusion>
|
165
|
</exclusions>
|
166
|
</dependency>
|
167
|
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
|
168
|
<dependency>
|
169
|
<groupId>com.google.code.gson</groupId>
|
170
|
<artifactId>gson</artifactId>
|
171
|
<version>2.3.1</version>
|
172
|
</dependency>
|
173
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
|
174
|
<dependency>
|
175
|
<groupId>org.apache.commons</groupId>
|
176
|
<artifactId>commons-lang3</artifactId>
|
177
|
<version>3.5</version>
|
178
|
</dependency>
|
179
|
|
180
|
<dependency>
|
181
|
<groupId>io.prometheus</groupId>
|
182
|
<artifactId>simpleclient</artifactId>
|
183
|
<version>0.6.0</version>
|
184
|
</dependency>
|
185
|
|
186
|
<dependency>
|
187
|
<groupId>io.prometheus</groupId>
|
188
|
<artifactId>simpleclient_servlet</artifactId>
|
189
|
<version>0.6.0</version>
|
190
|
</dependency>
|
191
|
|
192
|
<dependency>
|
193
|
<groupId>io.prometheus</groupId>
|
194
|
<artifactId>simpleclient_hotspot</artifactId>
|
195
|
<version>0.6.0</version>
|
196
|
</dependency>
|
197
|
|
198
|
<!-- https://mvnrepository.com/artifact/io.micrometer/micrometer-registry-prometheus -->
|
199
|
<dependency>
|
200
|
<groupId>io.micrometer</groupId>
|
201
|
<artifactId>micrometer-registry-prometheus</artifactId>
|
202
|
<version>1.2.0</version>
|
203
|
</dependency>
|
204
|
|
205
|
<!-- https://mvnrepository.com/artifact/io.micrometer/micrometer-spring-legacy -->
|
206
|
<dependency>
|
207
|
<groupId>io.micrometer</groupId>
|
208
|
<artifactId>micrometer-spring-legacy</artifactId>
|
209
|
<version>1.2.0</version>
|
210
|
</dependency>
|
211
|
|
212
|
|
213
|
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->
|
214
|
<!-- AspectJ -->
|
215
|
<dependency>
|
216
|
<groupId>org.aspectj</groupId>
|
217
|
<artifactId>aspectjrt</artifactId>
|
218
|
<version>1.9.4</version>
|
219
|
</dependency>
|
220
|
<dependency>
|
221
|
<groupId>org.aspectj</groupId>
|
222
|
<artifactId>aspectjweaver</artifactId>
|
223
|
<version>1.9.4</version>
|
224
|
</dependency>
|
225
|
|
226
|
<!-- https://mvnrepository.com/artifact/org.apache.maven/maven-model -->
|
227
|
<dependency>
|
228
|
<groupId>org.apache.maven</groupId>
|
229
|
<artifactId>maven-model</artifactId>
|
230
|
<version>3.3.9</version>
|
231
|
</dependency>
|
232
|
|
233
|
|
234
|
|
235
|
</dependencies>
|
236
|
|
237
|
<build>
|
238
|
<plugins>
|
239
|
<plugin>
|
240
|
<groupId>org.apache.maven.plugins</groupId>
|
241
|
<artifactId>maven-compiler-plugin</artifactId>
|
242
|
<configuration>
|
243
|
<source>1.8</source>
|
244
|
<target>1.8</target>
|
245
|
</configuration>
|
246
|
</plugin>
|
247
|
</plugins>
|
248
|
</build>
|
249
|
</project>
|