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" 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>dnet45-parent</artifactId>
6
		<version>1.0.0</version>
7
		<relativePath />
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-mapreduce-jobs</artifactId>
12
	<version>1.0.2-SNAPSHOT</version>
13
	<packaging>jar</packaging>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/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
	</repositories>
50
	<dependencies>
51
		<dependency>
52
			<groupId>commons-logging</groupId>
53
			<artifactId>commons-logging</artifactId>
54
			<version>${commons.logging.version}</version>
55
		</dependency>
56
		<dependency>
57
			<groupId>junit</groupId>
58
			<artifactId>junit</artifactId>
59
			<version>${junit.version}</version>
60
			<scope>test</scope>
61
		</dependency>
62
		<dependency>
63
			<groupId>com.google.code.gson</groupId>
64
			<artifactId>gson</artifactId>
65
			<version>${google.gson.version}</version>
66
		</dependency>
67
		<dependency>
68
			<groupId>eu.dnetlib</groupId>
69
			<artifactId>dnet-index-solr-common</artifactId>
70
			<version>[1.0.0,2.0.0)</version>
71
		</dependency>
72
		<dependency>
73
			<groupId>eu.dnetlib</groupId>
74
			<artifactId>dnet-openaire-broker-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>[4.10.4]</version>
81
			<exclusions>
82
				<exclusion>
83
					<artifactId>wstx-asl</artifactId>
84
					<groupId>org.codehaus.woodstox</groupId>
85
				</exclusion>
86
			</exclusions>
87
		</dependency>
88
		<dependency>
89
			<groupId>com.mycila</groupId>
90
			<artifactId>xmltool</artifactId>
91
			<version>3.3</version>
92
		</dependency>
93
		<dependency>
94
			<groupId>eu.dnetlib</groupId>
95
			<artifactId>cnr-misc-utils</artifactId>
96
			<version>[1.0.0,2.0.0)</version>
97
			<exclusions>
98
				<exclusion>
99
					<groupId>apache</groupId>
100
					<artifactId>commons-lang</artifactId>
101
				</exclusion>
102
			</exclusions>
103
		</dependency>
104
		<dependency>
105
			<groupId>eu.dnetlib</groupId>
106
			<artifactId>dnet-mapreduce-submitter</artifactId>
107
			<version>[3.0.0,4.0.0)</version>
108
			<exclusions>
109
				<exclusion>
110
					<artifactId>commons-httpclient</artifactId>
111
					<groupId>commons-httpclient</groupId>
112
				</exclusion>
113
			</exclusions>
114
		</dependency>
115
		<dependency>
116
			<groupId>org.apache.hbase</groupId>
117
			<artifactId>hbase</artifactId>
118
			<version>${apache.hbase.version}</version>
119
			<exclusions>
120
				<exclusion>
121
					<groupId>tomcat</groupId>
122
					<artifactId>jasper-runtime</artifactId>
123
				</exclusion>
124
				<exclusion>
125
					<groupId>tomcat</groupId>
126
					<artifactId>jasper-compiler</artifactId>
127
				</exclusion>
128
				<exclusion>
129
					<artifactId>slf4j-api</artifactId>
130
					<groupId>org.slf4j</groupId>
131
				</exclusion>
132
				<exclusion>
133
					<artifactId>slf4j-log4j12</artifactId>
134
					<groupId>org.slf4j</groupId>
135
				</exclusion>
136
				<exclusion>
137
					<artifactId>commons-lang</artifactId>
138
					<groupId>commons-lang</groupId>
139
				</exclusion>
140
				<exclusion>
141
					<artifactId>commons-httpclient</artifactId>
142
					<groupId>commons-httpclient</groupId>
143
				</exclusion>
144
				<exclusion>
145
					<artifactId>httpclient</artifactId>
146
					<groupId>org.apache.httpcomponents</groupId>
147
				</exclusion>
148
				<exclusion>
149
					<artifactId>httpcore</artifactId>
150
					<groupId>org.apache.httpcomponents</groupId>
151
				</exclusion>
152
			</exclusions>
153
		</dependency>
154
		<dependency>
155
			<groupId>com.googlecode.protobuf-java-format</groupId>
156
			<artifactId>protobuf-java-format</artifactId>
157
			<version>1.2</version>
158
		</dependency>
159
		<dependency>
160
			<groupId>eu.dnetlib</groupId>
161
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
162
			<version>[6.0.0,6.0.4]</version>
163
		</dependency>
164
                <dependency>
165
                        <groupId>eu.dnetlib</groupId>
166
                        <artifactId>dnet-openaire-data-protos</artifactId>
167
                        <version>[3.0.0,3.7.8]</version>
168
                </dependency>
169

    
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>com.typesafe</groupId>
182
			<artifactId>config</artifactId>
183
			<version>1.2.1</version>
184
		</dependency>
185
		<dependency>
186
			<groupId>eu.dnetlib</groupId>
187
			<artifactId>dnet-pace-core</artifactId>
188
			<version>[2.0.0,3.0.0)</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
		<dependency>
196
			<groupId>eu.dnetlib</groupId>
197
			<artifactId>dnet-actionmanager-common</artifactId>
198
			<version>[6.0.0,7.0.0)</version>
199
			<exclusions>
200
				<exclusion>
201
					<groupId>commons-httpclient</groupId>
202
					<artifactId>commons-httpclient</artifactId>
203
				</exclusion>
204
			</exclusions>
205
		</dependency>
206

    
207
		<dependency>
208
			<groupId>org.elasticsearch</groupId>
209
			<artifactId>elasticsearch-hadoop-mr</artifactId>
210
			<version>2.0.2</version>
211
		</dependency>
212
		<dependency>
213
			<groupId>org.mockito</groupId>
214
			<artifactId>mockito-core</artifactId>
215
			<version>${mockito.version}</version>
216
			<scope>test</scope>
217
		</dependency>
218
		<dependency>
219
			<groupId>eu.dnetlib</groupId>
220
			<artifactId>dnet-openaireplus-profiles</artifactId>
221
			<version>[1.0.0,1.0.18]</version>
222
			<scope>test</scope>
223
		</dependency>
224
		<dependency>
225
			<groupId>com.google.guava</groupId>
226
			<artifactId>guava</artifactId>
227
			<version>${google.guava.version}</version>
228
		</dependency>
229

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