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</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.6.4-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>org.apache.commons</groupId>
64
			<artifactId>commons-csv</artifactId>
65
			<version>1.1</version>
66
		</dependency>
67
		<dependency>
68
			<groupId>junit</groupId>
69
			<artifactId>junit</artifactId>
70
			<version>${junit.version}</version>
71
			<scope>test</scope>
72
		</dependency>
73
		<dependency>
74
			<groupId>com.google.code.gson</groupId>
75
			<artifactId>gson</artifactId>
76
			<version>${google.gson.version}</version>
77
		</dependency>
78
		<dependency>
79
			<groupId>eu.dnetlib</groupId>
80
			<artifactId>dnet-index-solr-common</artifactId>
81
			<version>[1.0.0,2.0.0)</version>
82
		</dependency>
83
		<dependency>
84
			<groupId>org.apache.solr</groupId>
85
			<artifactId>solr-solrj</artifactId>
86
			<version>${apache.solr.version}</version>
87
			<exclusions>
88
				<exclusion>
89
					<artifactId>wstx-asl</artifactId>
90
					<groupId>org.codehaus.woodstox</groupId>
91
				</exclusion>
92
				<exclusion>
93
					<artifactId>httpcore</artifactId>
94
					<groupId>org.apache.httpcomponents</groupId>
95
				</exclusion>
96
				<exclusion>
97
					<artifactId>httpclient</artifactId>
98
					<groupId>org.apache.httpcomponents</groupId>
99
				</exclusion>
100
			</exclusions>
101
		</dependency>
102
		<dependency>
103
			<groupId>com.mycila</groupId>
104
			<artifactId>xmltool</artifactId>
105
			<version>3.3</version>
106
		</dependency>
107
		<dependency>
108
			<groupId>eu.dnetlib</groupId>
109
			<artifactId>cnr-misc-utils</artifactId>
110
			<version>[1.0.0,2.0.0)</version>
111
			<exclusions>
112
				<exclusion>
113
					<groupId>apache</groupId>
114
					<artifactId>commons-lang</artifactId>
115
				</exclusion>
116
			</exclusions>
117
		</dependency>
118
		<dependency>
119
			<groupId>eu.dnetlib</groupId>
120
			<artifactId>dnet-mapreduce-submitter</artifactId>
121
			<version>[2.0.0,3.0.0)</version>
122
			<exclusions>
123
				<exclusion>
124
					<artifactId>commons-httpclient</artifactId>
125
					<groupId>commons-httpclient</groupId>
126
				</exclusion>
127
			</exclusions>
128
		</dependency>
129
		<dependency>
130
			<groupId>org.apache.hbase</groupId>
131
			<artifactId>hbase</artifactId>
132
			<version>${apache.hbase.version}</version>
133
			<exclusions>
134
				<exclusion>
135
					<groupId>tomcat</groupId>
136
					<artifactId>jasper-runtime</artifactId>
137
				</exclusion>
138
				<exclusion>
139
					<groupId>tomcat</groupId>
140
					<artifactId>jasper-compiler</artifactId>
141
				</exclusion>
142
				<exclusion>
143
					<artifactId>slf4j-api</artifactId>
144
					<groupId>org.slf4j</groupId>
145
				</exclusion>
146
				<exclusion>
147
					<artifactId>slf4j-log4j12</artifactId>
148
					<groupId>org.slf4j</groupId>
149
				</exclusion>
150
				<exclusion>
151
					<artifactId>commons-lang</artifactId>
152
					<groupId>commons-lang</groupId>
153
				</exclusion>
154
				<exclusion>
155
					<artifactId>commons-httpclient</artifactId>
156
					<groupId>commons-httpclient</groupId>
157
				</exclusion>
158
				<exclusion>
159
					<artifactId>httpclient</artifactId>
160
					<groupId>org.apache.httpcomponents</groupId>
161
				</exclusion>
162
				<exclusion>
163
					<artifactId>httpcore</artifactId>
164
					<groupId>org.apache.httpcomponents</groupId>
165
				</exclusion>
166
			</exclusions>
167
		</dependency>
168
		<dependency>
169
			<groupId>eu.dnetlib</groupId>
170
			<artifactId>dnet-openaire-data-protos</artifactId>
171
			<version>[3.0.0,4.0.0)</version>
172
		</dependency>
173
		<dependency>
174
			<groupId>com.googlecode.protobuf-java-format</groupId>
175
			<artifactId>protobuf-java-format</artifactId>
176
			<version>1.2</version>
177
		</dependency>
178
		<dependency>
179
			<groupId>eu.dnetlib</groupId>
180
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
181
			<version>[2.0.0,3.0.0)</version>
182
		</dependency>
183
		<dependency>
184
			<groupId>org.antlr</groupId>
185
			<artifactId>stringtemplate</artifactId>
186
			<version>3.2</version>
187
		</dependency>
188
		<dependency>
189
			<groupId>org.json</groupId>
190
			<artifactId>json</artifactId>
191
			<version>20140107</version>
192
		</dependency>
193
		<dependency>
194
			<groupId>eu.dnetlib</groupId>
195
			<artifactId>dnet-pace-core</artifactId>
196
			<version>[1.1.0,2.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
	</dependencies>
209
</project>
(3-3/5)