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>dnet45-parent</artifactId>
6
		<version>1.0.0</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.2.1-SNAPSHOT</version>
13
	<packaging>jar</packaging>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/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
	<repositories>
35
		<!-- Cloudera Repositories -->
36
		<repository>
37
			<snapshots>
38
				<enabled>false</enabled>
39
			</snapshots>
40
			<id>cloudera-central</id>
41
			<name>cloundera-libs-release</name>
42
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
43
		</repository>
44
		<repository>
45
			<id>cloudera-snapshots</id>
46
			<name>cloudera-libs-snapshot</name>
47
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
48
		</repository>
49
	</repositories>
50
	<dependencies>
51
		<dependency>
52
			<groupId>commons-logging</groupId>
53
			<artifactId>commons-logging</artifactId>
54
			<version>${commons.logging.version}</version>
55
		</dependency>
56
		<dependency>
57
			<groupId>junit</groupId>
58
			<artifactId>junit</artifactId>
59
			<version>${junit.version}</version>
60
			<scope>test</scope>
61
		</dependency>
62
		<dependency>
63
			<groupId>com.google.code.gson</groupId>
64
			<artifactId>gson</artifactId>
65
			<version>${google.gson.version}</version>
66
		</dependency>
67
		<dependency>
68
			<groupId>eu.dnetlib</groupId>
69
			<artifactId>dnet-openaire-broker-common</artifactId>
70
			<version>[1.0.0,2.0.0)</version>
71
		</dependency>
72
		<dependency>
73
			<groupId>com.mycila</groupId>
74
			<artifactId>xmltool</artifactId>
75
			<version>3.3</version>
76
		</dependency>
77
		<dependency>
78
			<groupId>eu.dnetlib</groupId>
79
			<artifactId>cnr-misc-utils</artifactId>
80
			<version>[1.0.0,2.0.0)</version>
81
			<exclusions>
82
				<exclusion>
83
					<groupId>apache</groupId>
84
					<artifactId>commons-lang</artifactId>
85
				</exclusion>
86
			</exclusions>
87
		</dependency>
88
		<dependency>
89
			<groupId>eu.dnetlib</groupId>
90
			<artifactId>dnet-hadoop-commons</artifactId>
91
			<version>[2.0.0,3.0.0)</version>
92
			<exclusions>
93
				<exclusion>
94
					<artifactId>commons-httpclient</artifactId>
95
					<groupId>commons-httpclient</groupId>
96
				</exclusion>
97
				<exclusion>
98
					<groupId>org.codehaus.jackson</groupId>
99
					<artifactId>jackson-core-asl</artifactId>
100
				</exclusion>
101
				<exclusion>
102
					<groupId>org.codehaus.jackson</groupId>
103
					<artifactId>jackson-mapper-asl</artifactId>
104
				</exclusion>
105
			</exclusions>
106
		</dependency>
107
		<dependency>
108
			<groupId>org.apache.hbase</groupId>
109
			<artifactId>hbase</artifactId>
110
			<version>${apache.hbase.version}</version>
111
			<exclusions>
112
				<exclusion>
113
					<groupId>tomcat</groupId>
114
					<artifactId>jasper-runtime</artifactId>
115
				</exclusion>
116
				<exclusion>
117
					<groupId>tomcat</groupId>
118
					<artifactId>jasper-compiler</artifactId>
119
				</exclusion>
120
				<exclusion>
121
					<artifactId>slf4j-api</artifactId>
122
					<groupId>org.slf4j</groupId>
123
				</exclusion>
124
				<exclusion>
125
					<artifactId>slf4j-log4j12</artifactId>
126
					<groupId>org.slf4j</groupId>
127
				</exclusion>
128
				<exclusion>
129
					<artifactId>commons-lang</artifactId>
130
					<groupId>commons-lang</groupId>
131
				</exclusion>
132
				<exclusion>
133
					<artifactId>commons-httpclient</artifactId>
134
					<groupId>commons-httpclient</groupId>
135
				</exclusion>
136
				<exclusion>
137
					<artifactId>httpclient</artifactId>
138
					<groupId>org.apache.httpcomponents</groupId>
139
				</exclusion>
140
				<exclusion>
141
					<artifactId>httpcore</artifactId>
142
					<groupId>org.apache.httpcomponents</groupId>
143
				</exclusion>
144
				<exclusion>
145
					<artifactId>org.jruby</artifactId>
146
					<groupId>jruby-complete</groupId>
147
				</exclusion>
148
				<exclusion>
149
					<groupId>org.mortbay.jetty</groupId>
150
					<artifactId>jetty</artifactId>
151
				</exclusion>
152
				<exclusion>
153
					<groupId>org.mortbay.jetty</groupId>
154
					<artifactId>jetty-util</artifactId>
155
				</exclusion>
156
				<exclusion>
157
					<groupId>org.mortbay.jetty</groupId>
158
					<artifactId>jsp-2.1</artifactId>
159
				</exclusion>
160
				<exclusion>
161
					<groupId>org.mortbay.jetty</groupId>
162
					<artifactId>jsp-2.1</artifactId>
163
				</exclusion>
164
				<exclusion>
165
					<groupId>org.mortbay.jetty</groupId>
166
					<artifactId>jsp-api-2.1</artifactId>
167
				</exclusion>
168
				<exclusion>
169
					<groupId>org.mortbay.jetty</groupId>
170
					<artifactId>servlet-api-2.5</artifactId>
171
				</exclusion>
172
				<exclusion>
173
					<groupId>org.codehaus.jackson</groupId>
174
					<artifactId>jackson-core-asl</artifactId>
175
				</exclusion>
176
				<exclusion>
177
					<groupId>org.codehaus.jackson</groupId>
178
					<artifactId>jackson-mapper-asl</artifactId>
179
				</exclusion>
180
				<exclusion>
181
					<groupId>org.codehaus.jackson</groupId>
182
					<artifactId>jackson-jaxrs</artifactId>
183
				</exclusion>
184
				<exclusion>
185
					<groupId>org.codehaus.jackson</groupId>
186
					<artifactId>jackson-xc</artifactId>
187
				</exclusion>
188
			</exclusions>
189
		</dependency>
190
		<dependency>
191
			<groupId>com.googlecode.protobuf-java-format</groupId>
192
			<artifactId>protobuf-java-format</artifactId>
193
			<version>1.2</version>
194
		</dependency>
195
		<dependency>
196
			<groupId>eu.dnetlib</groupId>
197
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
198
			<version>[6.3.25,7.0.0)</version>
199
		</dependency>
200
		<dependency>
201
			<groupId>org.antlr</groupId>
202
			<artifactId>stringtemplate</artifactId>
203
			<version>3.2</version>
204
		</dependency>
205
		<dependency>
206
			<groupId>org.json</groupId>
207
			<artifactId>json</artifactId>
208
			<version>20140107</version>
209
		</dependency>
210
		<dependency>
211
			<groupId>com.typesafe</groupId>
212
			<artifactId>config</artifactId>
213
			<version>1.2.1</version>
214
		</dependency>
215
		<dependency>
216
			<groupId>org.mongodb</groupId>
217
			<artifactId>mongo-java-driver</artifactId>
218
			<version>${mongodb.driver.version}</version>
219
		</dependency>
220
		<dependency>
221
			<groupId>eu.dnetlib</groupId>
222
			<artifactId>dnet-actionmanager-common</artifactId>
223
			<version>[6.0.0,7.0.0)</version>
224
			<exclusions>
225
				<exclusion>
226
					<groupId>commons-httpclient</groupId>
227
					<artifactId>commons-httpclient</artifactId>
228
				</exclusion>
229
				<exclusion>
230
					<groupId>eu.dnetlib</groupId>
231
					<artifactId>dnet-openaireplus-mapping-utils</artifactId>
232
				</exclusion>
233
			</exclusions>
234
		</dependency>
235

    
236
		<dependency>
237
			<groupId>eu.dnetlib.dhp</groupId>
238
			<artifactId>dhp-schemas</artifactId>
239
			<version>1.0.2</version>
240
			<exclusions>
241
				<exclusion>
242
					<groupId>com.google.protobuf</groupId>
243
					<artifactId>protobuf-java</artifactId>
244
				</exclusion>
245
			</exclusions>
246
		</dependency>
247

    
248
		<dependency>
249
			<groupId>org.elasticsearch</groupId>
250
			<artifactId>elasticsearch-hadoop-mr</artifactId>
251
			<version>5.2.0</version>
252
			<exclusions>
253
				<exclusion>
254
					<groupId>tomcat</groupId>
255
					<artifactId>jasper-compiler</artifactId>
256
				</exclusion>
257
				<exclusion>
258
					<groupId>org.antlr</groupId>
259
					<artifactId>antlr-runtime</artifactId>
260
				</exclusion>
261
				<exclusion>
262
					<groupId>org.eclipse.jetty.aggregate</groupId>
263
					<artifactId>jetty-all</artifactId>
264
				</exclusion>
265
				<exclusion>
266
					<groupId>org.slf4j</groupId>
267
					<artifactId>slf4j-log4j12</artifactId>
268
				</exclusion>
269
				<exclusion>
270
					<groupId>org.glassfish.jersey.core</groupId>
271
					<artifactId>jersey-client</artifactId>
272
				</exclusion>
273
				<exclusion>
274
					<groupId>org.glassfish.jersey.core</groupId>
275
					<artifactId>jersey-common</artifactId>
276
				</exclusion>
277
				<exclusion>
278
					<groupId>org.glassfish.jersey.core</groupId>
279
					<artifactId>jersey-server</artifactId>
280
				</exclusion>
281
				<exclusion>
282
					<groupId>org.glassfish.jersey.containers</groupId>
283
					<artifactId>jersey-container-servlet</artifactId>
284
				</exclusion>
285
				<exclusion>
286
					<groupId>org.glassfish.jersey.containers</groupId>
287
					<artifactId>jersey-container-servlet-core</artifactId>
288
				</exclusion>
289

    
290
				<exclusion>
291
					<groupId>org.codehaus.groovy</groupId>
292
					<artifactId>groovy-all</artifactId>
293
				</exclusion>
294

    
295
				<exclusion>
296
					<groupId>org.apache.hive</groupId>
297
					<artifactId>hive-service</artifactId>
298
				</exclusion>
299

    
300
				<exclusion>
301
					<groupId>org.apache.spark</groupId>
302
					<artifactId>spark-core_2.10</artifactId>
303
				</exclusion>
304
				<exclusion>
305
					<groupId>org.apache.spark</groupId>
306
					<artifactId>spark-sql_2.10</artifactId>
307
				</exclusion>
308
				<exclusion>
309
					<groupId>org.apache.spark</groupId>
310
					<artifactId>spark-streaming_2.10</artifactId>
311
				</exclusion>
312
				<exclusion>
313
					<groupId>cascading</groupId>
314
					<artifactId>cascading-hadoop</artifactId>
315
				</exclusion>
316
				<exclusion>
317
					<groupId>cascading</groupId>
318
					<artifactId>cascading-local</artifactId>
319
				</exclusion>
320
				<exclusion>
321
					<groupId>org.apache.storm</groupId>
322
					<artifactId>storm-core</artifactId>
323
				</exclusion>
324
				<exclusion>
325
					<groupId>org.apache.pig</groupId>
326
					<artifactId>pig</artifactId>
327
				</exclusion>
328
			</exclusions>
329

    
330
		</dependency>
331
		<dependency>
332
			<groupId>org.mockito</groupId>
333
			<artifactId>mockito-core</artifactId>
334
			<version>${mockito.version}</version>
335
			<scope>test</scope>
336
		</dependency>
337
		<dependency>
338
			<groupId>eu.dnetlib</groupId>
339
			<artifactId>dnet-openaireplus-profiles</artifactId>
340
			<version>[1.0.0,2.0.0)</version>
341
			<scope>test</scope>
342
		</dependency>
343
		<dependency>
344
			<groupId>com.google.guava</groupId>
345
			<artifactId>guava</artifactId>
346
			<version>${google.guava.version}</version>
347
		</dependency>
348

    
349
		<!-- json path -->
350
		<dependency>
351
			<groupId>com.jayway.jsonpath</groupId>
352
			<artifactId>json-path</artifactId>
353
			<version>2.4.0</version>
354
		</dependency>
355

    
356
    </dependencies>
357
</project>
(3-3/5)