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.4-BETA-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/beta</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.8]</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>eu.dnetlib</groupId>
165
			<artifactId>dnet-pace-core</artifactId>
166
			<version>[2.0.0,3.0.0)</version>
167
		</dependency>
168
		<dependency>
169
			<groupId>org.mongodb</groupId>
170
			<artifactId>mongo-java-driver</artifactId>
171
			<version>${mongodb.driver.version}</version>
172
		</dependency>
173
		<dependency>
174
			<groupId>eu.dnetlib</groupId>
175
			<artifactId>dnet-actionmanager-common</artifactId>
176
			<version>[6.0.0,7.0.0)</version>
177
			<exclusions>
178
				<exclusion>
179
					<groupId>commons-httpclient</groupId>
180
					<artifactId>commons-httpclient</artifactId>
181
				</exclusion>
182
			</exclusions>
183
		</dependency>
184

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

    
227
				<exclusion>
228
					<groupId>org.codehaus.groovy</groupId>
229
					<artifactId>groovy-all</artifactId>
230
				</exclusion>
231

    
232
				<exclusion>
233
					<groupId>org.apache.hive</groupId>
234
					<artifactId>hive-service</artifactId>
235
				</exclusion>
236

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

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

    
286
	</dependencies>
287
</project>
(3-3/5)