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-hadoop-parent</artifactId>
6
		<version>1.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>0.0.8.8-SNAPSHOT</version>
13
	<packaging>jar</packaging>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/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
		<repository>
50
			<id>typesafe</id>
51
			<name>typesafe-releases</name>
52
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
53
		</repository>
54
	</repositories>
55
	<dependencies>
56
		<dependency>
57
			<groupId>commons-logging</groupId>
58
			<artifactId>commons-logging</artifactId>
59
			<version>${commons.logging.version}</version>
60
		</dependency>
61
		<dependency>
62
			<groupId>junit</groupId>
63
			<artifactId>junit</artifactId>
64
			<version>${junit.version}</version>
65
			<scope>test</scope>
66
		</dependency>
67
		<dependency>
68
			<groupId>com.google.code.gson</groupId>
69
			<artifactId>gson</artifactId>
70
			<version>${google.gson.version}</version>
71
		</dependency>
72
		<dependency>
73
			<groupId>eu.dnetlib</groupId>
74
			<artifactId>dnet-index-solr-common</artifactId>
75
			<version>[1.0.0,2.0.0)</version>
76
		</dependency>
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
			</exclusions>
95
		</dependency>
96
		<dependency>
97
			<groupId>com.mycila</groupId>
98
			<artifactId>xmltool</artifactId>
99
			<version>3.3</version>
100
		</dependency>
101
		<dependency>
102
			<groupId>eu.dnetlib</groupId>
103
			<artifactId>cnr-misc-utils</artifactId>
104
			<version>[1.0.0,2.0.0)</version>
105
			<exclusions>
106
				<exclusion>
107
					<groupId>apache</groupId>
108
					<artifactId>commons-lang</artifactId>
109
				</exclusion>
110
			</exclusions>
111
		</dependency>
112
		<dependency>
113
			<groupId>eu.dnetlib</groupId>
114
			<artifactId>dnet-mapreduce-submitter</artifactId>
115
			<version>[2.0.0,3.0.0)</version>
116
			<exclusions>
117
				<exclusion>
118
					<artifactId>commons-httpclient</artifactId>
119
					<groupId>commons-httpclient</groupId>
120
				</exclusion>
121
			</exclusions>
122
		</dependency>
123
		<dependency>
124
			<groupId>org.apache.hbase</groupId>
125
			<artifactId>hbase</artifactId>
126
			<version>${apache.hbase.version}</version>
127
			<exclusions>
128
				<exclusion>
129
					<groupId>tomcat</groupId>
130
					<artifactId>jasper-runtime</artifactId>
131
				</exclusion>
132
				<exclusion>
133
					<groupId>tomcat</groupId>
134
					<artifactId>jasper-compiler</artifactId>
135
				</exclusion>
136
				<exclusion>
137
					<artifactId>slf4j-api</artifactId>
138
					<groupId>org.slf4j</groupId>
139
				</exclusion>
140
				<exclusion>
141
					<artifactId>slf4j-log4j12</artifactId>
142
					<groupId>org.slf4j</groupId>
143
				</exclusion>
144
				<exclusion>
145
					<artifactId>commons-lang</artifactId>
146
					<groupId>commons-lang</groupId>
147
				</exclusion>
148
				<exclusion>
149
					<artifactId>commons-httpclient</artifactId>
150
					<groupId>commons-httpclient</groupId>
151
				</exclusion>
152
				<exclusion>
153
					<artifactId>httpclient</artifactId>
154
					<groupId>org.apache.httpcomponents</groupId>
155
				</exclusion>
156
				<exclusion>
157
					<artifactId>httpcore</artifactId>
158
					<groupId>org.apache.httpcomponents</groupId>
159
				</exclusion>
160
			</exclusions>
161
		</dependency>
162
		<dependency>
163
			<groupId>eu.dnetlib</groupId>
164
			<artifactId>dnet-openaire-data-protos</artifactId>
165
			<version>[3.0.0,4.0.0)</version>
166
		</dependency>
167
		<dependency>
168
			<groupId>com.googlecode.protobuf-java-format</groupId>
169
			<artifactId>protobuf-java-format</artifactId>
170
			<version>1.2</version>
171
		</dependency>
172
		<dependency>
173
			<groupId>eu.dnetlib</groupId>
174
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
175
			<version>[3.0.0,4.0.0)</version>
176
		</dependency>
177
		<dependency>
178
			<groupId>org.antlr</groupId>
179
			<artifactId>stringtemplate</artifactId>
180
			<version>3.2</version>
181
		</dependency>
182
		<dependency>
183
			<groupId>org.json</groupId>
184
			<artifactId>json</artifactId>
185
			<version>20140107</version>
186
		</dependency>
187
		<dependency>
188
			<groupId>com.typesafe</groupId>
189
			<artifactId>config</artifactId>
190
			<version>1.2.1</version>
191
		</dependency>
192
		<dependency>
193
			<groupId>eu.dnetlib</groupId>
194
			<artifactId>dnet-pace-core</artifactId>
195
			<version>[2.0.0,3.0.0)</version>
196
		</dependency>
197
		<dependency>
198
			<groupId>org.apache.httpcomponents</groupId>
199
			<artifactId>httpclient</artifactId>
200
			<version>4.2.3</version>
201
		</dependency>
202
		<dependency>
203
			<groupId>org.mongodb</groupId>
204
			<artifactId>mongo-java-driver</artifactId>
205
			<version>${mongodb.driver.version}</version>
206
		</dependency>
207
		<dependency>
208
			<groupId>eu.dnetlib</groupId>
209
			<artifactId>dnet-actionmanager-common</artifactId>
210
			<version>[3.0.0,4.0.0)</version>
211
		</dependency>
212

    
213
		<!-- 		<dependency> -->
214
		<!-- 		    <groupId>org.elasticsearch</groupId> -->
215
		<!-- 		    <artifactId>elasticsearch-hadoop</artifactId> -->
216
		<!-- 		    <version>2.0.2</version> -->
217
		<!-- 		</dependency>		 -->
218
		<dependency>
219
			<groupId>org.elasticsearch</groupId>
220
			<artifactId>elasticsearch-hadoop-mr</artifactId>
221
			<version>2.0.2</version>
222
		</dependency>
223
		<dependency>
224
			<groupId>org.mockito</groupId>
225
			<artifactId>mockito-all</artifactId>
226
			<version>1.8.5</version>
227
			<scope>test</scope>
228
		</dependency>
229
		<dependency>
230
			<groupId>eu.dnetlib</groupId>
231
			<artifactId>dnet-openaireplus-profiles</artifactId>
232
			<version>[1.0.0,2.0.0)</version>
233
			<scope>test</scope>
234
		</dependency>
235

    
236
	</dependencies>
237
</project>
(3-3/5)