Project

General

Profile

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>uoa-global-parent</artifactId>
6
		<version>1.0.1</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.10.0</version>
13
	<scm>
14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/uoa-search/tags/uoa-search-3.10.0</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>4.9</version>
44
			<scope>test</scope>
45
		</dependency>
46
		<dependency>
47
			<groupId>eu.dnetlib</groupId>
48
			<artifactId>uoa-commons</artifactId>
49
			<version>[2.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
			<exclusions>
72
				<exclusion>
73
					<groupId>log4j</groupId>
74
					<artifactId>log4j</artifactId>
75
				</exclusion>
76
			</exclusions>
77
        </dependency>
78
		<dependency>
79
			<groupId>eu.dnetlib</groupId>
80
			<artifactId>cnr-cql-utils</artifactId>
81
			<version>[2.0.0, 3.0.0)</version>
82
			<scope>compile</scope>
83
			<exclusions>
84
				<exclusion>
85
					<groupId>log4j</groupId>
86
					<artifactId>log4j</artifactId>
87
				</exclusion>
88
			</exclusions>
89
		</dependency>
90
		<dependency>
91
			<groupId>eu.dnetlib</groupId>
92
			<artifactId>cnr-blackboard-common</artifactId>
93
			<version>[2.2.1, 3.0.0)</version>
94
			<exclusions>
95
				<exclusion>
96
					<groupId>log4j</groupId>
97
					<artifactId>log4j</artifactId>
98
				</exclusion>
99
			</exclusions>
100
		</dependency>
101

    
102
		<!-- Spring MVC framework -->
103
		<dependency>
104
			<groupId>org.springframework</groupId>
105
			<artifactId>spring-webmvc</artifactId>
106
			<version>4.2.5.RELEASE</version>
107
		</dependency>
108

    
109
		<dependency>
110
			<groupId>org.apache.velocity</groupId>
111
			<artifactId>velocity</artifactId>
112
			<version>1.7</version>
113
		</dependency>
114

    
115
		<dependency>
116
			<groupId>asm</groupId>
117
			<artifactId>asm</artifactId>
118
			<version>3.3.1</version>
119
		</dependency>
120
		<dependency>
121
			<groupId>com.sun.jersey</groupId>
122
			<artifactId>jersey-bundle</artifactId>
123
			<version>1.19</version>
124
		</dependency>
125
		<dependency>
126
			<groupId>org.json</groupId>
127
			<artifactId>json</artifactId>
128
			<version>20140107</version>
129
		</dependency>
130
		<dependency>
131
			<groupId>com.sun.jersey</groupId>
132
			<artifactId>jersey-server</artifactId>
133
			<version>1.19</version>
134
		</dependency>
135
		<dependency>
136
			<groupId>com.sun.jersey</groupId>
137
			<artifactId>jersey-core</artifactId>
138
			<version>1.19</version>
139
		</dependency>
140
		<dependency>
141
			<groupId>commons-validator</groupId>
142
			<artifactId>commons-validator</artifactId>
143
			<version>1.6</version>
144
		</dependency>
145
		<dependency>
146
			<groupId>org.eclipse.persistence</groupId>
147
			<artifactId>org.eclipse.persistence.moxy</artifactId>
148
			<version>2.5.0</version>
149
		</dependency>
150
		<dependency>
151
			<groupId>com.sun.jersey.contribs</groupId>
152
			<artifactId>jersey-spring</artifactId>
153
			<version>1.8</version>
154
			<exclusions>
155
				<exclusion>
156
					<groupId>org.springframework</groupId>
157
					<artifactId>spring</artifactId>
158
				</exclusion>
159
				<exclusion>
160
					<groupId>org.springframework</groupId>
161
					<artifactId>spring-core</artifactId>
162
				</exclusion>
163
				<exclusion>
164
					<groupId>org.springframework</groupId>
165
					<artifactId>spring-web</artifactId>
166
				</exclusion>
167
				<exclusion>
168
					<groupId>org.springframework</groupId>
169
					<artifactId>spring-beans</artifactId>
170
				</exclusion>
171
				<exclusion>
172
					<groupId>org.springframework</groupId>
173
					<artifactId>spring-context</artifactId>
174
				</exclusion>
175
				<exclusion>
176
					<groupId>org.springframework</groupId>
177
					<artifactId>spring-utils</artifactId>
178
				</exclusion>
179
				<exclusion>
180
					<groupId>org.springframework</groupId>
181
					<artifactId>spring-aop</artifactId>
182
				</exclusion>
183
			</exclusions>
184
		</dependency>
185
		<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
186
		<dependency>
187
			<groupId>com.google.code.gson</groupId>
188
			<artifactId>gson</artifactId>
189
			<version>2.3.1</version>
190
		</dependency>
191
		<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
192
		<dependency>
193
			<groupId>org.apache.commons</groupId>
194
			<artifactId>commons-lang3</artifactId>
195
			<version>3.5</version>
196
		</dependency>
197

    
198
		<dependency>
199
			<groupId>io.prometheus</groupId>
200
			<artifactId>simpleclient</artifactId>
201
			<version>0.6.0</version>
202
		</dependency>
203

    
204
		<dependency>
205
			<groupId>io.prometheus</groupId>
206
			<artifactId>simpleclient_servlet</artifactId>
207
			<version>0.6.0</version>
208
		</dependency>
209

    
210
		<dependency>
211
			<groupId>io.prometheus</groupId>
212
			<artifactId>simpleclient_hotspot</artifactId>
213
			<version>0.6.0</version>
214
		</dependency>
215

    
216
		<!-- https://mvnrepository.com/artifact/io.micrometer/micrometer-registry-prometheus -->
217
		<dependency>
218
			<groupId>io.micrometer</groupId>
219
			<artifactId>micrometer-registry-prometheus</artifactId>
220
			<version>1.2.0</version>
221
		</dependency>
222

    
223
		<!-- https://mvnrepository.com/artifact/io.micrometer/micrometer-spring-legacy -->
224
		<dependency>
225
			<groupId>io.micrometer</groupId>
226
			<artifactId>micrometer-spring-legacy</artifactId>
227
			<version>1.2.0</version>
228
		</dependency>
229

    
230

    
231
		<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->
232
		<!-- AspectJ -->
233
		<dependency>
234
			<groupId>org.aspectj</groupId>
235
			<artifactId>aspectjrt</artifactId>
236
			<version>1.9.4</version>
237
		</dependency>
238
		<dependency>
239
			<groupId>org.aspectj</groupId>
240
			<artifactId>aspectjweaver</artifactId>
241
			<version>1.9.4</version>
242
		</dependency>
243

    
244
        <!-- https://mvnrepository.com/artifact/org.apache.maven/maven-model -->
245
        <dependency>
246
            <groupId>org.apache.maven</groupId>
247
            <artifactId>maven-model</artifactId>
248
            <version>3.3.9</version>
249
        </dependency>
250

    
251

    
252
			<!--dependency>
253
				<groupId>org.apache.logging.log4j</groupId>
254
				<artifactId>log4j-api</artifactId>
255
				<version>2.13.0</version>
256
			</dependency>
257
			<dependency>
258
				<groupId>org.apache.logging.log4j</groupId>
259
				<artifactId>log4j-core</artifactId>
260
				<version>2.13.0</version>
261
			</dependency-->
262

    
263
    </dependencies>
264

    
265
	<build>
266
		<plugins>
267
			<plugin>
268
				<groupId>org.apache.maven.plugins</groupId>
269
				<artifactId>maven-compiler-plugin</artifactId>
270
				<configuration>
271
					<source>1.8</source>
272
					<target>1.8</target>
273
				</configuration>
274
			</plugin>
275
		</plugins>
276
	</build>
277
</project>
(2-2/2)