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

    
196
	</dependencies>
197
</project>
(3-3/5)