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.1.9-MASTER-SNAPSHOT</version>
13
	<packaging>jar</packaging>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-mapreduce-jobs/branches/master</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
			</exclusions>
98
		</dependency>
99
		<dependency>
100
			<groupId>org.apache.hbase</groupId>
101
			<artifactId>hbase</artifactId>
102
			<version>${apache.hbase.version}</version>
103
			<exclusions>
104
				<exclusion>
105
					<groupId>tomcat</groupId>
106
					<artifactId>jasper-runtime</artifactId>
107
				</exclusion>
108
				<exclusion>
109
					<groupId>tomcat</groupId>
110
					<artifactId>jasper-compiler</artifactId>
111
				</exclusion>
112
				<exclusion>
113
					<artifactId>slf4j-api</artifactId>
114
					<groupId>org.slf4j</groupId>
115
				</exclusion>
116
				<exclusion>
117
					<artifactId>slf4j-log4j12</artifactId>
118
					<groupId>org.slf4j</groupId>
119
				</exclusion>
120
				<exclusion>
121
					<artifactId>commons-lang</artifactId>
122
					<groupId>commons-lang</groupId>
123
				</exclusion>
124
				<exclusion>
125
					<artifactId>commons-httpclient</artifactId>
126
					<groupId>commons-httpclient</groupId>
127
				</exclusion>
128
				<exclusion>
129
					<artifactId>httpclient</artifactId>
130
					<groupId>org.apache.httpcomponents</groupId>
131
				</exclusion>
132
				<exclusion>
133
					<artifactId>httpcore</artifactId>
134
					<groupId>org.apache.httpcomponents</groupId>
135
				</exclusion>
136
			</exclusions>
137
		</dependency>
138
		<dependency>
139
			<groupId>com.googlecode.protobuf-java-format</groupId>
140
			<artifactId>protobuf-java-format</artifactId>
141
			<version>1.2</version>
142
		</dependency>
143
		<dependency>
144
			<groupId>eu.dnetlib</groupId>
145
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
146
			<version>[6.2.17]</version>
147
		</dependency>
148
		<dependency>
149
			<groupId>org.antlr</groupId>
150
			<artifactId>stringtemplate</artifactId>
151
			<version>3.2</version>
152
		</dependency>
153
		<dependency>
154
			<groupId>org.json</groupId>
155
			<artifactId>json</artifactId>
156
			<version>20140107</version>
157
		</dependency>
158
		<dependency>
159
			<groupId>com.typesafe</groupId>
160
			<artifactId>config</artifactId>
161
			<version>1.2.1</version>
162
		</dependency>
163
		<dependency>
164
			<groupId>org.mongodb</groupId>
165
			<artifactId>mongo-java-driver</artifactId>
166
			<version>${mongodb.driver.version}</version>
167
		</dependency>
168
		<dependency>
169
			<groupId>eu.dnetlib</groupId>
170
			<artifactId>dnet-actionmanager-common</artifactId>
171
			<version>[6.0.0,7.0.0)</version>
172
			<exclusions>
173
				<exclusion>
174
					<groupId>commons-httpclient</groupId>
175
					<artifactId>commons-httpclient</artifactId>
176
				</exclusion>
177
			</exclusions>
178
		</dependency>
179

    
180
		<dependency>
181
			<groupId>org.elasticsearch</groupId>
182
			<artifactId>elasticsearch-hadoop-mr</artifactId>
183
			<version>5.2.0</version>
184
			<exclusions>
185
				<exclusion>
186
					<groupId>tomcat</groupId>
187
					<artifactId>jasper-compiler</artifactId>
188
				</exclusion>
189
				<exclusion>
190
					<groupId>org.antlr</groupId>
191
					<artifactId>antlr-runtime</artifactId>
192
				</exclusion>
193
				<exclusion>
194
					<groupId>org.eclipse.jetty.aggregate</groupId>
195
					<artifactId>jetty-all</artifactId>
196
				</exclusion>
197
				<exclusion>
198
					<groupId>org.slf4j</groupId>
199
					<artifactId>slf4j-log4j12</artifactId>
200
				</exclusion>
201
				<exclusion>
202
					<groupId>org.glassfish.jersey.core</groupId>
203
					<artifactId>jersey-client</artifactId>
204
				</exclusion>
205
				<exclusion>
206
					<groupId>org.glassfish.jersey.core</groupId>
207
					<artifactId>jersey-common</artifactId>
208
				</exclusion>
209
				<exclusion>
210
					<groupId>org.glassfish.jersey.core</groupId>
211
					<artifactId>jersey-server</artifactId>
212
				</exclusion>
213
				<exclusion>
214
					<groupId>org.glassfish.jersey.containers</groupId>
215
					<artifactId>jersey-container-servlet</artifactId>
216
				</exclusion>
217
				<exclusion>
218
					<groupId>org.glassfish.jersey.containers</groupId>
219
					<artifactId>jersey-container-servlet-core</artifactId>
220
				</exclusion>
221

    
222
				<exclusion>
223
					<groupId>org.codehaus.groovy</groupId>
224
					<artifactId>groovy-all</artifactId>
225
				</exclusion>
226

    
227
				<exclusion>
228
					<groupId>org.apache.hive</groupId>
229
					<artifactId>hive-service</artifactId>
230
				</exclusion>
231

    
232
				<exclusion>
233
					<groupId>org.apache.spark</groupId>
234
					<artifactId>spark-core_2.10</artifactId>
235
				</exclusion>
236
				<exclusion>
237
					<groupId>org.apache.spark</groupId>
238
					<artifactId>spark-sql_2.10</artifactId>
239
				</exclusion>
240
				<exclusion>
241
					<groupId>org.apache.spark</groupId>
242
					<artifactId>spark-streaming_2.10</artifactId>
243
				</exclusion>
244
				<exclusion>
245
					<groupId>cascading</groupId>
246
					<artifactId>cascading-hadoop</artifactId>
247
				</exclusion>
248
				<exclusion>
249
					<groupId>cascading</groupId>
250
					<artifactId>cascading-local</artifactId>
251
				</exclusion>
252
				<exclusion>
253
					<groupId>org.apache.storm</groupId>
254
					<artifactId>storm-core</artifactId>
255
				</exclusion>
256
				<exclusion>
257
					<groupId>org.apache.pig</groupId>
258
					<artifactId>pig</artifactId>
259
				</exclusion>
260
			</exclusions>
261

    
262
		</dependency>
263
		<dependency>
264
			<groupId>org.mockito</groupId>
265
			<artifactId>mockito-core</artifactId>
266
			<version>${mockito.version}</version>
267
			<scope>test</scope>
268
		</dependency>
269
		<dependency>
270
			<groupId>eu.dnetlib</groupId>
271
			<artifactId>dnet-openaireplus-profiles</artifactId>
272
			<version>[1.0.0,2.0.0)</version>
273
			<scope>test</scope>
274
		</dependency>
275
		<dependency>
276
			<groupId>com.google.guava</groupId>
277
			<artifactId>guava</artifactId>
278
			<version>${google.guava.version}</version>
279
		</dependency>
280

    
281
	</dependencies>
282
</project>
(3-3/5)