Project

General

Profile

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

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

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

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

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

    
251
				<exclusion>
252
					<artifactId>core</artifactId>
253
					<groupId>org.eclipse.jdt</groupId>
254
				</exclusion>
255

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

    
265
			</exclusions>
266
		</dependency>
267

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

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

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

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

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

    
381
				<exclusion>
382
					<groupId>org.codehaus.groovy</groupId>
383
					<artifactId>groovy-all</artifactId>
384
				</exclusion>
385

    
386
				<exclusion>
387
					<groupId>org.apache.hive</groupId>
388
					<artifactId>hive-service</artifactId>
389
				</exclusion>
390

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

    
421
		</dependency>
422

    
423
		<dependency>
424
			<groupId>commons-lang</groupId>
425
			<artifactId>commons-lang</artifactId>
426
			<version>2.5</version>
427
			<scope>test</scope>
428
		</dependency>
429
		<dependency>
430
			<groupId>org.mockito</groupId>
431
			<artifactId>mockito-all</artifactId>
432
			<version>1.8.5</version>
433
			<scope>test</scope>
434
		</dependency>
435
		<dependency>
436
			<groupId>org.apache.zookeeper</groupId>
437
			<artifactId>zookeeper</artifactId>
438
			<version>3.4.5-cdh4.3.0</version>
439
			<scope>test</scope>
440
		</dependency>
441
		<dependency>
442
			<groupId>eu.dnetlib</groupId>
443
			<artifactId>dnet-openaire-broker-common</artifactId>
444
			<version>[1.0.0,2.0.0)</version>
445
		</dependency>
446

    
447
		<!-- <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> 
448
			<version>20160212</version> <scope>test</scope> </dependency> -->
449

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