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-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>cnr-index-solr-common</artifactId>
|
73
|
<version>[1.0.0-SNAPSHOT]</version>
|
74
|
<exclusions>
|
75
|
<exclusion>
|
76
|
<artifactId>httpcore</artifactId>
|
77
|
<groupId>org.apache.httpcomponents</groupId>
|
78
|
</exclusion>
|
79
|
<exclusion>
|
80
|
<artifactId>httpclient</artifactId>
|
81
|
<groupId>org.apache.httpcomponents</groupId>
|
82
|
</exclusion>
|
83
|
</exclusions>
|
84
|
</dependency>
|
85
|
<dependency>
|
86
|
<groupId>eu.dnetlib</groupId>
|
87
|
<artifactId>cnr-misc-utils</artifactId>
|
88
|
<version>[1.0.0-SNAPSHOT]</version>
|
89
|
<exclusions>
|
90
|
<exclusion>
|
91
|
<groupId>apache</groupId>
|
92
|
<artifactId>commons-lang</artifactId>
|
93
|
</exclusion>
|
94
|
</exclusions>
|
95
|
</dependency>
|
96
|
<dependency>
|
97
|
<groupId>eu.dnetlib</groupId>
|
98
|
<artifactId>dnet-mapreduce-submitter</artifactId>
|
99
|
<version>2.0.0-SNAPSHOT</version>
|
100
|
<exclusions>
|
101
|
<exclusion>
|
102
|
<artifactId>commons-httpclient</artifactId>
|
103
|
<groupId>commons-httpclient</groupId>
|
104
|
</exclusion>
|
105
|
</exclusions>
|
106
|
</dependency>
|
107
|
<dependency>
|
108
|
<groupId>org.apache.hbase</groupId>
|
109
|
<artifactId>hbase</artifactId>
|
110
|
<version>${apache.hbase.version}</version>
|
111
|
<exclusions>
|
112
|
<exclusion>
|
113
|
<groupId>tomcat</groupId>
|
114
|
<artifactId>jasper-runtime</artifactId>
|
115
|
</exclusion>
|
116
|
<exclusion>
|
117
|
<groupId>tomcat</groupId>
|
118
|
<artifactId>jasper-compiler</artifactId>
|
119
|
</exclusion>
|
120
|
<exclusion>
|
121
|
<artifactId>slf4j-api</artifactId>
|
122
|
<groupId>org.slf4j</groupId>
|
123
|
</exclusion>
|
124
|
<exclusion>
|
125
|
<artifactId>slf4j-log4j12</artifactId>
|
126
|
<groupId>org.slf4j</groupId>
|
127
|
</exclusion>
|
128
|
<exclusion>
|
129
|
<artifactId>commons-lang</artifactId>
|
130
|
<groupId>commons-lang</groupId>
|
131
|
</exclusion>
|
132
|
<exclusion>
|
133
|
<artifactId>commons-httpclient</artifactId>
|
134
|
<groupId>commons-httpclient</groupId>
|
135
|
</exclusion>
|
136
|
<exclusion>
|
137
|
<artifactId>httpclient</artifactId>
|
138
|
<groupId>org.apache.httpcomponents</groupId>
|
139
|
</exclusion>
|
140
|
<exclusion>
|
141
|
<artifactId>httpcore</artifactId>
|
142
|
<groupId>org.apache.httpcomponents</groupId>
|
143
|
</exclusion>
|
144
|
</exclusions>
|
145
|
</dependency>
|
146
|
<dependency>
|
147
|
<groupId>eu.dnetlib</groupId>
|
148
|
<artifactId>dnet-openaire-data-protos</artifactId>
|
149
|
<version>[3.0.0-SNAPSHOT]</version>
|
150
|
</dependency>
|
151
|
<dependency>
|
152
|
<groupId>eu.dnetlib</groupId>
|
153
|
<artifactId>dnet-openaireplus-mapping-utils</artifactId>
|
154
|
<version>[2.0.0-SNAPSHOT]</version>
|
155
|
</dependency>
|
156
|
<dependency>
|
157
|
<groupId>org.antlr</groupId>
|
158
|
<artifactId>stringtemplate</artifactId>
|
159
|
<version>3.2</version>
|
160
|
</dependency>
|
161
|
<dependency>
|
162
|
<groupId>org.json</groupId>
|
163
|
<artifactId>json</artifactId>
|
164
|
<version>20140107</version>
|
165
|
</dependency>
|
166
|
<dependency>
|
167
|
<groupId>eu.dnetlib</groupId>
|
168
|
<artifactId>dnet-pace-core</artifactId>
|
169
|
<version>[1.1.0-SNAPSHOT]</version>
|
170
|
</dependency>
|
171
|
<dependency>
|
172
|
<groupId>org.apache.httpcomponents</groupId>
|
173
|
<artifactId>httpclient</artifactId>
|
174
|
<version>4.2.3</version>
|
175
|
</dependency>
|
176
|
<dependency>
|
177
|
<groupId>org.mongodb</groupId>
|
178
|
<artifactId>mongo-java-driver</artifactId>
|
179
|
<version>${mongodb.driver.version}</version>
|
180
|
</dependency>
|
181
|
</dependencies>
|
182
|
</project>
|