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"
3
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>dnet-hadoop-parent</artifactId>
7
		<version>1.0.0-SNAPSHOT</version>
8
		<relativePath/>
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>dnet-mapreduce-jobs</artifactId>
13
	<version>0.0.8.3-SNAPSHOT</version>
14
	<packaging>jar</packaging>
15
	<scm>
16
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-mapreduce-jobs/trunk</developerConnection>
17
	</scm>
18
	<build>
19
		<plugins>
20
			<plugin>
21
				<artifactId>maven-assembly-plugin</artifactId>
22
				<configuration>
23
					<archive>
24
						<manifest>
25
							<mainClass>eu.dnetlib.data.mapreduce.hbase.dataimport.ImportRecordsJob</mainClass>
26
						</manifest>
27
					</archive>
28
					<descriptorRefs>
29
						<descriptorRef>jar-with-dependencies</descriptorRef>
30
					</descriptorRefs>
31
				</configuration>
32
			</plugin>
33
		</plugins>
34
	</build>
35
	<repositories>
36
		<!-- Cloudera Repositories -->
37
		<repository>
38
			<snapshots>
39
				<enabled>false</enabled>
40
			</snapshots>
41
			<id>cloudera-central</id>
42
			<name>cloundera-libs-release</name>
43
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
44
		</repository>
45
		<repository>
46
			<id>cloudera-snapshots</id>
47
			<name>cloudera-libs-snapshot</name>
48
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
49
		</repository>
50
		<repository>
51
			<id>typesafe</id>
52
			<name>typesafe-releases</name>
53
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
54
		</repository>
55
	</repositories>
56
	<dependencies>
57
		<dependency>
58
			<groupId>commons-logging</groupId>
59
			<artifactId>commons-logging</artifactId>
60
			<version>${commons.logging.version}</version>
61
		</dependency>
62
		<dependency>
63
			<groupId>junit</groupId>
64
			<artifactId>junit</artifactId>
65
			<version>${junit.version}</version>
66
			<scope>test</scope>
67
		</dependency>
68
		<dependency>
69
			<groupId>com.google.code.gson</groupId>
70
			<artifactId>gson</artifactId>
71
			<version>${google.gson.version}</version>
72
		</dependency>
73
		<dependency>
74
			<groupId>eu.dnetlib</groupId>
75
			<artifactId>dnet-index-solr-common</artifactId>
76
			<version>[1.0.0,2.0.0)</version>
77
		</dependency>
78
		<dependency>
79
			<groupId>org.apache.solr</groupId>
80
			<artifactId>solr-solrj</artifactId>
81
			<version>${apache.solr.version}</version>
82
			<exclusions>
83
				<exclusion>
84
					<artifactId>wstx-asl</artifactId>
85
					<groupId>org.codehaus.woodstox</groupId>
86
				</exclusion>
87
				<exclusion>
88
					<artifactId>httpcore</artifactId>
89
					<groupId>org.apache.httpcomponents</groupId>
90
				</exclusion>
91
				<exclusion>
92
					<artifactId>httpclient</artifactId>
93
					<groupId>org.apache.httpcomponents</groupId>
94
				</exclusion>
95
			</exclusions>
96
		</dependency>
97
		<dependency>
98
			<groupId>com.mycila</groupId>
99
			<artifactId>xmltool</artifactId>
100
			<version>3.3</version>
101
		</dependency>
102
		<dependency>
103
			<groupId>eu.dnetlib</groupId>
104
			<artifactId>cnr-misc-utils</artifactId>
105
			<version>[1.0.0,2.0.0)</version>
106
			<exclusions>
107
				<exclusion>
108
					<groupId>apache</groupId>
109
					<artifactId>commons-lang</artifactId>
110
				</exclusion>
111
			</exclusions>
112
		</dependency>
113
		<dependency>
114
			<groupId>eu.dnetlib</groupId>
115
			<artifactId>dnet-mapreduce-submitter</artifactId>
116
			<version>[2.0.0,3.0.0)</version>
117
			<exclusions>
118
				<exclusion>
119
					<artifactId>commons-httpclient</artifactId>
120
					<groupId>commons-httpclient</groupId>
121
				</exclusion>
122
			</exclusions>
123
		</dependency>
124
		<dependency>
125
			<groupId>org.apache.hbase</groupId>
126
			<artifactId>hbase</artifactId>
127
			<version>${apache.hbase.version}</version>
128
			<exclusions>
129
				<exclusion>
130
					<groupId>tomcat</groupId>
131
					<artifactId>jasper-runtime</artifactId>
132
				</exclusion>
133
				<exclusion>
134
					<groupId>tomcat</groupId>
135
					<artifactId>jasper-compiler</artifactId>
136
				</exclusion>
137
				<exclusion>
138
					<artifactId>slf4j-api</artifactId>
139
					<groupId>org.slf4j</groupId>
140
				</exclusion>
141
				<exclusion>
142
					<artifactId>slf4j-log4j12</artifactId>
143
					<groupId>org.slf4j</groupId>
144
				</exclusion>
145
				<exclusion>
146
					<artifactId>commons-lang</artifactId>
147
					<groupId>commons-lang</groupId>
148
				</exclusion>
149
				<exclusion>
150
					<artifactId>commons-httpclient</artifactId>
151
					<groupId>commons-httpclient</groupId>
152
				</exclusion>
153
				<exclusion>
154
					<artifactId>httpclient</artifactId>
155
					<groupId>org.apache.httpcomponents</groupId>
156
				</exclusion>
157
				<exclusion>
158
					<artifactId>httpcore</artifactId>
159
					<groupId>org.apache.httpcomponents</groupId>
160
				</exclusion>
161
			</exclusions>
162
		</dependency>
163
		<dependency>
164
			<groupId>eu.dnetlib</groupId>
165
			<artifactId>dnet-openaire-data-protos</artifactId>
166
			<version>[3.0.0,4.0.0)</version>
167
		</dependency>
168
		<dependency>
169
			<groupId>com.googlecode.protobuf-java-format</groupId>
170
			<artifactId>protobuf-java-format</artifactId>
171
			<version>1.2</version>
172
		</dependency>
173
		<dependency>
174
			<groupId>eu.dnetlib</groupId>
175
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
176
			<version>[3.0.0,4.0.0)</version>
177
		</dependency>
178
		<dependency>
179
			<groupId>org.antlr</groupId>
180
			<artifactId>stringtemplate</artifactId>
181
			<version>3.2</version>
182
		</dependency>
183
		<dependency>
184
			<groupId>org.json</groupId>
185
			<artifactId>json</artifactId>
186
			<version>20140107</version>
187
		</dependency>
188
		<dependency>
189
			<groupId>com.typesafe</groupId>
190
			<artifactId>config</artifactId>
191
			<version>1.2.1</version>
192
		</dependency>
193
		<dependency>
194
			<groupId>eu.dnetlib</groupId>
195
			<artifactId>dnet-pace-core</artifactId>
196
			<version>[2.0.0,3.0.0)</version>
197
		</dependency>
198
		<dependency>
199
			<groupId>org.apache.httpcomponents</groupId>
200
			<artifactId>httpclient</artifactId>
201
			<version>4.2.3</version>
202
		</dependency>
203
		<dependency>
204
			<groupId>org.mongodb</groupId>
205
			<artifactId>mongo-java-driver</artifactId>
206
			<version>${mongodb.driver.version}</version>
207
		</dependency>
208
		<dependency>
209
			<groupId>eu.dnetlib</groupId>
210
			<artifactId>dnet-actionmanager-common</artifactId>
211
			<version>[2.0.0,3.0.0)</version>
212
		</dependency>
213

    
214
		<!-- 		<dependency> -->
215
		<!-- 		    <groupId>org.elasticsearch</groupId> -->
216
		<!-- 		    <artifactId>elasticsearch-hadoop</artifactId> -->
217
		<!-- 		    <version>2.0.2</version> -->
218
		<!-- 		</dependency>		 -->
219
		<dependency>
220
			<groupId>org.elasticsearch</groupId>
221
			<artifactId>elasticsearch-hadoop-mr</artifactId>
222
			<version>2.0.2</version>
223
		</dependency>
224
		<dependency>
225
			<groupId>org.mockito</groupId>
226
			<artifactId>mockito-all</artifactId>
227
			<version>1.8.5</version>
228
		</dependency>
229

    
230
	</dependencies>
231
</project>
(3-3/5)