Project

General

Profile

1
<?xml version="1.0" ?>
2
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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-SNAPSHOT</version>
7
		<relativePath />
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-mapreduce-jobs</artifactId>
12
	<version>1.0.0-SNAPSHOT</version>
13
	<packaging>jar</packaging>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet50/modules/dnet-mapreduce-jobs/trunk</developerConnection>
16
	</scm>
17
	<build>
18
		<plugins>
19
			<plugin>
20
				<artifactId>maven-assembly-plugin</artifactId>
21
				<configuration>
22
					<archive>
23
						<manifest>
24
							<mainClass>eu.dnetlib.data.mapreduce.hbase.dataimport.ImportRecordsJob</mainClass>
25
						</manifest>
26
					</archive>
27
					<descriptorRefs>
28
						<descriptorRef>jar-with-dependencies</descriptorRef>
29
					</descriptorRefs>
30
				</configuration>
31
			</plugin>
32
		</plugins>
33
	</build>
34

    
35
	<repositories>
36
		<!-- Cloudera Repositories -->
37
		<repository>
38
			<snapshots>
39
				<enabled>false</enabled>
40
			</snapshots>
41
			<id>cloudera-central</id>
42
			<name>cloundera-libs-release</name>
43
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
44
		</repository>
45
		<repository>
46
			<id>cloudera-snapshots</id>
47
			<name>cloudera-libs-snapshot</name>
48
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
49
		</repository>
50
		<repository>
51
			<id>typesafe</id>
52
			<name>typesafe-releases</name>
53
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
54
		</repository>
55
	</repositories>
56
	<dependencies>
57
		<dependency>
58
			<groupId>eu.dnetlib</groupId>
59
			<artifactId>dnet-wds-domain</artifactId>
60
			<version>1.0.0-SNAPSHOT</version>
61
		</dependency>
62

    
63
		<dependency>
64
			<groupId>eu.dnetlib</groupId>
65
			<artifactId>dnet-dli-domain</artifactId>
66
			<version>1.0.0-SNAPSHOT</version>
67
		</dependency>
68
		<dependency>
69
			<groupId>junit</groupId>
70
			<artifactId>junit</artifactId>
71
			<version>${junit.version}</version>
72
			<scope>test</scope>
73
		</dependency>
74

    
75
		<dependency>
76
			<groupId>org.apache.solr</groupId>
77
			<artifactId>solr-solrj</artifactId>
78
			<version>${apache.solr.version}</version>
79
			<exclusions>
80
				<exclusion>
81
					<artifactId>wstx-asl</artifactId>
82
					<groupId>org.codehaus.woodstox</groupId>
83
				</exclusion>
84
				<exclusion>
85
					<artifactId>httpcore</artifactId>
86
					<groupId>org.apache.httpcomponents</groupId>
87
				</exclusion>
88
				<exclusion>
89
					<artifactId>httpclient</artifactId>
90
					<groupId>org.apache.httpcomponents</groupId>
91
				</exclusion>
92
				<exclusion>
93
					<artifactId>jcl-over-slf4j</artifactId>
94
					<groupId>org.slf4j</groupId>
95
				</exclusion>
96
				<exclusion>
97
					<artifactId>slf4j-api</artifactId>
98
					<groupId>org.slf4j</groupId>
99
				</exclusion>
100
			</exclusions>
101
		</dependency>
102
		<dependency>
103
			<groupId>com.mycila</groupId>
104
			<artifactId>xmltool</artifactId>
105
			<version>3.3</version>
106
		</dependency>
107

    
108
		<dependency>
109
			<groupId>org.apache.hadoop</groupId>
110
			<artifactId>hadoop-common</artifactId>
111
			<version>${hadoop.common.version}</version>
112
			<exclusions>
113
				<exclusion>
114
					<groupId>com.google.protobuf</groupId>
115
					<artifactId>protobuf-java</artifactId>
116
				</exclusion>
117
				<exclusion>
118
					<groupId>javax.servlet</groupId>
119
					<artifactId>servlet-api</artifactId>
120
				</exclusion>
121
				<exclusion>
122
					<artifactId>slf4j-api</artifactId>
123
					<groupId>org.slf4j</groupId>
124
				</exclusion>
125
				<exclusion>
126
					<artifactId>slf4j-log4j12</artifactId>
127
					<groupId>org.slf4j</groupId>
128
				</exclusion>
129
				<exclusion>
130
					<artifactId>jsp-api</artifactId>
131
					<groupId>javax.servlet.jsp</groupId>
132
				</exclusion>
133
				<exclusion>
134
					<artifactId>guava</artifactId>
135
					<groupId>com.google.guava</groupId>
136
				</exclusion>
137
				<exclusion>
138
					<artifactId>jersey-json</artifactId>
139
					<groupId>com.sun.jersey</groupId>
140
				</exclusion>
141
				<exclusion>
142
					<artifactId>jersey-core</artifactId>
143
					<groupId>com.sun.jersey</groupId>
144
				</exclusion>
145
				<exclusion>
146
					<artifactId>jersey-server</artifactId>
147
					<groupId>com.sun.jersey</groupId>
148
				</exclusion>
149
				<exclusion>
150
					<artifactId>jetty</artifactId>
151
					<groupId>org.mortbay.jetty</groupId>
152
				</exclusion>
153
				<exclusion>
154
					<artifactId>jetty-util</artifactId>
155
					<groupId>org.mortbay.jetty</groupId>
156
				</exclusion>
157
				<exclusion>
158
					<artifactId>jackson-core-asl</artifactId>
159
					<groupId>org.codehaus.jackson</groupId>
160
				</exclusion>
161
				<exclusion>
162
					<artifactId>jackson-mapper-asl</artifactId>
163
					<groupId>org.codehaus.jackson</groupId>
164
				</exclusion>
165
				<exclusion>
166
					<artifactId>jasper-compiler</artifactId>
167
					<groupId>tomcat</groupId>
168
				</exclusion>
169
				<exclusion>
170
					<artifactId>commons-httpclient</artifactId>
171
					<groupId>commons-httpclient</groupId>
172
				</exclusion>
173
				<exclusion>
174
					<artifactId>jsch</artifactId>
175
					<groupId>com.jcraft</groupId>
176
				</exclusion>
177
				<exclusion>
178
					<artifactId>commons-beanutils</artifactId>
179
					<groupId>commons-beanutils</groupId>
180
				</exclusion>
181
				<exclusion>
182
					<artifactId>commons-lang</artifactId>
183
					<groupId>commons-lang</groupId>
184
				</exclusion>
185
				<exclusion>
186
					<artifactId>commons-logging</artifactId>
187
					<groupId>commons-logging</groupId>
188
				</exclusion>
189
				<exclusion>
190
					<artifactId>commons-net</artifactId>
191
					<groupId>commons-net</groupId>
192
				</exclusion>
193
				<exclusion>
194
					<artifactId>commons-compress</artifactId>
195
					<groupId>commons-compress</groupId>
196
				</exclusion>
197
			</exclusions>
198
		</dependency>
199
		<dependency>
200
			<groupId>org.apache.hadoop</groupId>
201
			<artifactId>hadoop-core</artifactId>
202
			<version>${hadoop.core.version}</version>
203
			<exclusions>
204
				<exclusion>
205
					<groupId>tomcat</groupId>
206
					<artifactId>jasper-runtime</artifactId>
207
				</exclusion>
208
				<exclusion>
209
					<groupId>tomcat</groupId>
210
					<artifactId>jasper-compiler</artifactId>
211
				</exclusion>
212
				<exclusion>
213
					<artifactId>jsp-api</artifactId>
214
					<groupId>javax.servlet.jsp</groupId>
215
				</exclusion>
216
				<exclusion>
217
					<groupId>javax.servlet</groupId>
218
					<artifactId>servlet-api</artifactId>
219
				</exclusion>
220
				<exclusion>
221
					<artifactId>commons-httpclient</artifactId>
222
					<groupId>commons-httpclient</groupId>
223
				</exclusion>
224
				<exclusion>
225
					<artifactId>commons-net</artifactId>
226
					<groupId>commons-net</groupId>
227
				</exclusion>
228
				<exclusion>
229
					<artifactId>jackson-core-asl</artifactId>
230
					<groupId>org.codehaus.jackson</groupId>
231
				</exclusion>
232
				<exclusion>
233
					<artifactId>jackson-mapper-asl</artifactId>
234
					<groupId>org.codehaus.jackson</groupId>
235
				</exclusion>
236
				<exclusion>
237
					<artifactId>jetty</artifactId>
238
					<groupId>org.mortbay.jetty</groupId>
239
				</exclusion>
240
				<exclusion>
241
					<artifactId>jetty-util</artifactId>
242
					<groupId>org.mortbay.jetty</groupId>
243
				</exclusion>
244
				<exclusion>
245
					<artifactId>jsp-2.1</artifactId>
246
					<groupId>org.mortbay.jetty</groupId>
247
				</exclusion>
248

    
249
				<exclusion>
250
					<artifactId>core</artifactId>
251
					<groupId>org.eclipse.jdt</groupId>
252
				</exclusion>
253

    
254
				<exclusion>
255
					<artifactId>jersey-core</artifactId>
256
					<groupId>com.sun.jersey</groupId>
257
				</exclusion>
258
				<exclusion>
259
					<artifactId>jersey-server</artifactId>
260
					<groupId>com.sun.jersey</groupId>
261
				</exclusion>
262

    
263
			</exclusions>
264
		</dependency>
265

    
266
		<dependency>
267
			<groupId>org.apache.hbase</groupId>
268
			<artifactId>hbase</artifactId>
269
			<version>${apache.hbase.version}</version>
270
			<exclusions>
271
				<exclusion>
272
					<groupId>com.google.protobuf</groupId>
273
					<artifactId>protobuf-java</artifactId>
274
				</exclusion>
275
				<exclusion>
276
					<groupId>tomcat</groupId>
277
					<artifactId>jasper-runtime</artifactId>
278
				</exclusion>
279
				<exclusion>
280
					<groupId>tomcat</groupId>
281
					<artifactId>jasper-compiler</artifactId>
282
				</exclusion>
283
				<exclusion>
284
					<artifactId>slf4j-api</artifactId>
285
					<groupId>org.slf4j</groupId>
286
				</exclusion>
287
				<exclusion>
288
					<artifactId>slf4j-log4j12</artifactId>
289
					<groupId>org.slf4j</groupId>
290
				</exclusion>
291
				<exclusion>
292
					<artifactId>commons-lang</artifactId>
293
					<groupId>commons-lang</groupId>
294
				</exclusion>
295
				<exclusion>
296
					<artifactId>commons-httpclient</artifactId>
297
					<groupId>commons-httpclient</groupId>
298
				</exclusion>
299
				<exclusion>
300
					<artifactId>httpclient</artifactId>
301
					<groupId>org.apache.httpcomponents</groupId>
302
				</exclusion>
303
				<exclusion>
304
					<artifactId>httpcore</artifactId>
305
					<groupId>org.apache.httpcomponents</groupId>
306
				</exclusion>
307
				<exclusion>
308
					<artifactId>guava</artifactId>
309
					<groupId>com.google.guava</groupId>
310
				</exclusion>
311
			</exclusions>
312
		</dependency>
313

    
314
		<dependency>
315
			<groupId>org.apache.commons</groupId>
316
			<artifactId>commons-lang3</artifactId>
317
			<version>${commons.lang.version}</version>
318
		</dependency>
319
		<dependency>
320
			<groupId>com.typesafe</groupId>
321
			<artifactId>config</artifactId>
322
			<version>1.3.0</version>
323
		</dependency>
324

    
325
		<dependency>
326
			<groupId>org.mongodb</groupId>
327
			<artifactId>mongo-java-driver</artifactId>
328
			<version>${mongodb.driver.version}</version>
329
		</dependency>
330

    
331
		<dependency>
332
			<groupId>commons-httpclient</groupId>
333
			<artifactId>commons-httpclient</artifactId>
334
			<version>3.1</version>
335
		</dependency>
336
		<dependency>
337
			<groupId>org.elasticsearch</groupId>
338
			<artifactId>elasticsearch-hadoop</artifactId>
339
			<version>5.2.0</version>
340

    
341
			<exclusions>
342
				<exclusion>
343
					<groupId>tomcat</groupId>
344
					<artifactId>jasper-compiler</artifactId>
345
				</exclusion>
346
				<exclusion>
347
					<groupId>org.antlr</groupId>
348
					<artifactId>antlr-runtime</artifactId>
349
				</exclusion>
350
				<exclusion>
351
					<groupId>org.eclipse.jetty.aggregate</groupId>
352
					<artifactId>jetty-all</artifactId>
353
				</exclusion>
354
				<exclusion>
355
					<groupId>org.slf4j</groupId>
356
					<artifactId>slf4j-log4j12</artifactId>
357
				</exclusion>
358
				<exclusion>
359
					<groupId>org.glassfish.jersey.core</groupId>
360
					<artifactId>jersey-client</artifactId>
361
				</exclusion>
362
				<exclusion>
363
					<groupId>org.glassfish.jersey.core</groupId>
364
					<artifactId>jersey-common</artifactId>
365
				</exclusion>
366
				<exclusion>
367
					<groupId>org.glassfish.jersey.core</groupId>
368
					<artifactId>jersey-server</artifactId>
369
				</exclusion>
370
				<exclusion>
371
					<groupId>org.glassfish.jersey.containers</groupId>
372
					<artifactId>jersey-container-servlet</artifactId>
373
				</exclusion>
374
				<exclusion>
375
					<groupId>org.glassfish.jersey.containers</groupId>
376
					<artifactId>jersey-container-servlet-core</artifactId>
377
				</exclusion>
378

    
379
				<exclusion>
380
					<groupId>org.codehaus.groovy</groupId>
381
					<artifactId>groovy-all</artifactId>
382
				</exclusion>
383

    
384
				<exclusion>
385
					<groupId>org.apache.hive</groupId>
386
					<artifactId>hive-service</artifactId>
387
				</exclusion>
388

    
389
				<exclusion>
390
					<groupId>org.apache.spark</groupId>
391
					<artifactId>spark-core_2.10</artifactId>
392
				</exclusion>
393
				<exclusion>
394
					<groupId>org.apache.spark</groupId>
395
					<artifactId>spark-sql_2.10</artifactId>
396
				</exclusion>
397
				<exclusion>
398
					<groupId>org.apache.spark</groupId>
399
					<artifactId>spark-streaming_2.10</artifactId>
400
				</exclusion>
401
				<exclusion>
402
					<groupId>cascading</groupId>
403
					<artifactId>cascading-hadoop</artifactId>
404
				</exclusion>
405
				<exclusion>
406
					<groupId>cascading</groupId>
407
					<artifactId>cascading-local</artifactId>
408
				</exclusion>
409
				<exclusion>
410
					<groupId>org.apache.storm</groupId>
411
					<artifactId>storm-core</artifactId>
412
				</exclusion>
413
				<exclusion>
414
					<groupId>org.apache.pig</groupId>
415
					<artifactId>pig</artifactId>
416
				</exclusion>
417
			</exclusions>
418

    
419
		</dependency>
420

    
421
		<dependency>
422
			<groupId>commons-lang</groupId>
423
			<artifactId>commons-lang</artifactId>
424
			<version>2.5</version>
425
			<scope>test</scope>
426
		</dependency>
427
		<dependency>
428
			<groupId>org.mockito</groupId>
429
			<artifactId>mockito-all</artifactId>
430
			<version>1.8.5</version>
431
			<scope>test</scope>
432
		</dependency>
433
		<dependency>
434
			<groupId>org.apache.zookeeper</groupId>
435
			<artifactId>zookeeper</artifactId>
436
			<version>3.4.5-cdh4.3.0</version>
437
			<scope>test</scope>
438
		</dependency>
439

    
440
		<!--
441
		<dependency>
442
			<groupId>org.json</groupId>
443
			<artifactId>json</artifactId>
444
			<version>20160212</version>
445
			<scope>test</scope>
446
		</dependency>
447
		-->
448

    
449
	</dependencies>
450
</project>
(3-3/5)