Project

General

Profile

1 26600 sandro.lab
<?xml version="1.0" ?>
2 37615 claudio.at
<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 26600 sandro.lab
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>dnet-hadoop-parent</artifactId>
7 37615 claudio.at
		<version>1.0.1-CDH-5.3.0-SNAPSHOT</version>
8 32002 claudio.at
		<relativePath />
9 26600 sandro.lab
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<groupId>eu.dnetlib</groupId>
12
	<artifactId>dnet-mapreduce-jobs</artifactId>
13 37615 claudio.at
	<version>0.0.6.6-CDH-5.3.0-SNAPSHOT</version>
14 26600 sandro.lab
	<packaging>jar</packaging>
15 32003 claudio.at
	<scm>
16 32007 claudio.at
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-mapreduce-jobs/trunk</developerConnection>
17 37615 claudio.at
	</scm>
18 26600 sandro.lab
	<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 30835 claudio.at
			<artifactId>dnet-index-solr-common</artifactId>
76 31998 claudio.at
			<version>[1.0.0,2.0.0)</version>
77 37615 claudio.at
		</dependency>
78 30835 claudio.at
		<dependency>
79
			<groupId>org.apache.solr</groupId>
80
			<artifactId>solr-solrj</artifactId>
81
			<version>${apache.solr.version}</version>
82 26600 sandro.lab
			<exclusions>
83
				<exclusion>
84 30835 claudio.at
					<artifactId>wstx-asl</artifactId>
85
					<groupId>org.codehaus.woodstox</groupId>
86
				</exclusion>
87
				<exclusion>
88 26600 sandro.lab
					<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 30835 claudio.at
			<groupId>com.mycila</groupId>
99
			<artifactId>xmltool</artifactId>
100
			<version>3.3</version>
101 37615 claudio.at
		</dependency>
102 30835 claudio.at
		<dependency>
103 26600 sandro.lab
			<groupId>eu.dnetlib</groupId>
104
			<artifactId>cnr-misc-utils</artifactId>
105 30751 alessia.ba
			<version>[1.0.0,2.0.0)</version>
106 26600 sandro.lab
			<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 30835 claudio.at
			<version>[2.0.0,3.0.0)</version>
117 26600 sandro.lab
			<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 37615 claudio.at
			<artifactId>hbase-server</artifactId>
127 26600 sandro.lab
			<version>${apache.hbase.version}</version>
128
			<exclusions>
129
				<exclusion>
130 37615 claudio.at
					<artifactId>hadoop-core</artifactId>
131
					<groupId>org.apache.hadoop</groupId>
132 26600 sandro.lab
				</exclusion>
133
				<exclusion>
134 37615 claudio.at
					<artifactId>org.mortbay.jetty</artifactId>
135
					<groupId>servlet-api</groupId>
136 26600 sandro.lab
				</exclusion>
137
				<exclusion>
138 37615 claudio.at
					<artifactId>javax.servlet.jsp</artifactId>
139
					<groupId>jsp-api</groupId>
140 26600 sandro.lab
				</exclusion>
141
				<exclusion>
142 37615 claudio.at
					<artifactId>javax.servlet</artifactId>
143
					<groupId>servlet-api</groupId>
144 26600 sandro.lab
				</exclusion>
145
				<exclusion>
146 37615 claudio.at
					<artifactId>jasper-compiler</artifactId>
147
					<groupId>tomcat</groupId>
148 26600 sandro.lab
				</exclusion>
149
				<exclusion>
150 37615 claudio.at
					<artifactId>jasper-runtime</artifactId>
151
					<groupId>tomcat</groupId>
152 26600 sandro.lab
				</exclusion>
153
				<exclusion>
154 37615 claudio.at
					<artifactId>jsp-api-2.1</artifactId>
155
					<groupId>org.mortbay.jetty</groupId>
156 26600 sandro.lab
				</exclusion>
157
				<exclusion>
158 37615 claudio.at
					<artifactId>jsp-api</artifactId>
159
					<groupId>javax.servlet.jsp</groupId>
160 26600 sandro.lab
				</exclusion>
161 37615 claudio.at
				<exclusion>
162
					<artifactId>servlet-api</artifactId>
163
					<groupId>javax.servlet</groupId>
164
				</exclusion>
165
				<exclusion>
166
					<artifactId>servlet-api-2.5</artifactId>
167
					<groupId>org.mortbay.jetty</groupId>
168
				</exclusion>
169 26600 sandro.lab
			</exclusions>
170
		</dependency>
171
		<dependency>
172
			<groupId>eu.dnetlib</groupId>
173
			<artifactId>dnet-openaire-data-protos</artifactId>
174 30835 claudio.at
			<version>[3.0.0,4.0.0)</version>
175 26600 sandro.lab
		</dependency>
176
		<dependency>
177 34602 claudio.at
			<groupId>com.googlecode.protobuf-java-format</groupId>
178
			<artifactId>protobuf-java-format</artifactId>
179
			<version>1.2</version>
180 37615 claudio.at
		</dependency>
181 34602 claudio.at
		<dependency>
182 26600 sandro.lab
			<groupId>eu.dnetlib</groupId>
183
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
184 35451 michele.ar
			<version>[3.0.0,4.0.0)</version>
185 26600 sandro.lab
		</dependency>
186
		<dependency>
187
			<groupId>org.antlr</groupId>
188
			<artifactId>stringtemplate</artifactId>
189
			<version>3.2</version>
190
		</dependency>
191
		<dependency>
192
			<groupId>org.json</groupId>
193
			<artifactId>json</artifactId>
194 28094 claudio.at
			<version>20140107</version>
195 26600 sandro.lab
		</dependency>
196
		<dependency>
197 36670 claudio.at
			<groupId>com.typesafe</groupId>
198
			<artifactId>config</artifactId>
199
			<version>1.2.1</version>
200 37615 claudio.at
		</dependency>
201 36670 claudio.at
		<dependency>
202 26600 sandro.lab
			<groupId>eu.dnetlib</groupId>
203
			<artifactId>dnet-pace-core</artifactId>
204 36670 claudio.at
			<version>[2.0.0,3.0.0)</version>
205 26600 sandro.lab
		</dependency>
206
		<dependency>
207
			<groupId>org.apache.httpcomponents</groupId>
208
			<artifactId>httpclient</artifactId>
209
			<version>4.2.3</version>
210
		</dependency>
211 27199 claudio.at
		<dependency>
212
			<groupId>org.mongodb</groupId>
213
			<artifactId>mongo-java-driver</artifactId>
214
			<version>${mongodb.driver.version}</version>
215
		</dependency>
216 35476 claudio.at
		<dependency>
217
			<groupId>eu.dnetlib</groupId>
218
			<artifactId>dnet-actionmanager-common</artifactId>
219
			<version>[2.0.0,3.0.0)</version>
220
		</dependency>
221 37615 claudio.at
222
223 37563 claudio.at
		<dependency>
224 37615 claudio.at
			<groupId>org.elasticsearch</groupId>
225
			<artifactId>elasticsearch-hadoop-mr</artifactId>
226
			<version>2.0.2</version>
227 37563 claudio.at
		</dependency>
228 37615 claudio.at
		<dependency>
229
			<groupId>org.mockito</groupId>
230
			<artifactId>mockito-all</artifactId>
231
			<version>1.8.5</version>
232
		</dependency>
233
234 26600 sandro.lab
	</dependencies>
235
</project>