Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
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>dnet-parent</artifactId>
6
		<version>1.0.1-CDH-5.3.0-SNAPSHOT</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<groupId>eu.dnetlib</groupId>
10
	<artifactId>dnet-hadoop-service</artifactId>
11
	<packaging>jar</packaging>
12
	<version>2.2.3-CDH-5.3.0-SNAPSHOT</version>
13
	<scm>
14
	    <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-hadoop-service/branches/CDH-5.3.X</developerConnection>
15
	</scm>
16
	<repositories>
17
		<!-- Cloudera Repositories -->
18
		<repository>
19
			<snapshots>
20
				<enabled>false</enabled>
21
			</snapshots>
22
			<id>cloudera-central</id>
23
			<name>cloundera-libs-release</name>
24
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
25
		</repository>
26
		<repository>
27
			<id>cloudera-snapshots</id>
28
			<name>cloudera-libs-snapshot</name>
29
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
30
		</repository>
31
	</repositories>
32
	<dependencies>
33
		<dependency>
34
			<groupId>eu.dnetlib</groupId>
35
			<artifactId>dnet-hadoop-service-rmi</artifactId>
36
			<version>[1.0.0,2.0.0)</version>
37
		</dependency>
38
		<dependency>
39
			<groupId>com.google.code.gson</groupId>
40
			<artifactId>gson</artifactId>
41
			<version>${google.gson.version}</version>
42
		</dependency>
43
		<dependency>
44
			<groupId>eu.dnetlib</groupId>
45
			<artifactId>cnr-blackboard-common</artifactId>
46
			<version>[2.1.0,3.0.0)</version>
47
		</dependency>
48
		<dependency>
49
			<groupId>eu.dnetlib</groupId>
50
			<artifactId>cnr-resultset-client</artifactId>
51
			<version>[2.0.0,3.0.0)</version>
52
			<exclusions>
53
				<exclusion>
54
					<artifactId>slf4j-api</artifactId>
55
					<groupId>org.slf4j</groupId>
56
				</exclusion>
57
			</exclusions>
58
		</dependency>
59
		<dependency>
60
			<groupId>eu.dnetlib</groupId>
61
			<artifactId>dnet-mapreduce-submitter</artifactId>
62
			<version>[2.0.0,3.0.0)</version>
63
		</dependency>
64
		<dependency>
65
			<groupId>org.apache.hbase</groupId>
66
			<artifactId>hbase-client</artifactId>
67
			<version>${apache.hbase.version}</version>
68
<!-- 			<exclusions> -->
69
<!-- 				<exclusion> -->
70
<!-- 					<artifactId>jsp-api-2.1</artifactId> -->
71
<!-- 					<groupId>org.mortbay.jetty</groupId> -->
72
<!-- 				</exclusion> -->
73
<!-- 				<exclusion> -->
74
<!-- 					<artifactId>servlet-api-2.5</artifactId> -->
75
<!-- 					<groupId>org.mortbay.jetty</groupId> -->
76
<!-- 				</exclusion> -->
77
<!-- 				<exclusion> -->
78
<!-- 					<artifactId>slf4j-api</artifactId> -->
79
<!-- 					<groupId>org.slf4j</groupId> -->
80
<!-- 				</exclusion> -->
81
<!-- 				<exclusion> -->
82
<!-- 					<artifactId>slf4j-log4j12</artifactId> -->
83
<!-- 					<groupId>org.slf4j</groupId> -->
84
<!-- 				</exclusion> -->
85
<!-- 				<exclusion> -->
86
<!-- 					<artifactId>stax-api</artifactId> -->
87
<!-- 					<groupId>stax</groupId> -->
88
<!-- 				</exclusion> -->
89
<!-- 				<exclusion> -->
90
<!-- 					<artifactId>httpclient</artifactId> -->
91
<!-- 					<groupId>org.apache.httpcomponents</groupId> -->
92
<!-- 				</exclusion> -->
93
<!-- 			</exclusions> -->
94
			<exclusions>
95
				<exclusion>
96
					<artifactId>hadoop-core</artifactId>
97
					<groupId>org.apache.hadoop</groupId>
98
				</exclusion>
99
			</exclusions>
100
		</dependency>
101
		<dependency>
102
			<groupId>org.apache.hbase</groupId>
103
			<artifactId>hbase-server</artifactId>
104
			<version>${apache.hbase.version}</version>
105
			<exclusions>
106
				<exclusion>
107
					<artifactId>hadoop-core</artifactId>
108
					<groupId>org.apache.hadoop</groupId>
109
				</exclusion>
110

    
111
				<exclusion>
112
					<artifactId>org.mortbay.jetty</artifactId>
113
					<groupId>servlet-api</groupId>
114
				</exclusion>
115
				<exclusion>
116
					<artifactId>javax.servlet.jsp</artifactId>
117
					<groupId>jsp-api</groupId>
118
				</exclusion>				
119
				<exclusion>
120
					<artifactId>javax.servlet</artifactId>
121
					<groupId>servlet-api</groupId>
122
				</exclusion>
123

    
124
				<exclusion>
125
					<artifactId>jasper-compiler</artifactId>
126
					<groupId>tomcat</groupId>
127
				</exclusion>
128
				<exclusion>
129
					<artifactId>jasper-runtime</artifactId>
130
					<groupId>tomcat</groupId>
131
				</exclusion>
132
				<exclusion>
133
					<artifactId>jsp-api-2.1</artifactId>
134
					<groupId>org.mortbay.jetty</groupId>
135
				</exclusion>
136
				<exclusion>
137
					<artifactId>jsp-api</artifactId>
138
					<groupId>javax.servlet.jsp</groupId>
139
				</exclusion>
140
				<exclusion>
141
					<artifactId>servlet-api</artifactId>
142
					<groupId>javax.servlet</groupId>
143
				</exclusion>
144
				<exclusion>
145
					<artifactId>servlet-api-2.5</artifactId>
146
					<groupId>org.mortbay.jetty</groupId>
147
				</exclusion>
148
			</exclusions>
149
		</dependency>
150
		<dependency>
151
			<groupId>org.apache.oozie</groupId>
152
			<artifactId>oozie-client</artifactId>
153
			<version>${apache.oozie.version}</version>
154
			<exclusions>
155
				<exclusion>
156
					<artifactId>slf4j-simple</artifactId>
157
					<groupId>org.slf4j</groupId>
158
				</exclusion>
159
				<exclusion>
160
					<artifactId>slf4j-api</artifactId>
161
					<groupId>org.slf4j</groupId>
162
				</exclusion>
163
				<exclusion>
164
					<artifactId>xercesImpl</artifactId>
165
					<groupId>xerces</groupId>
166
				</exclusion>
167
			</exclusions>
168
		</dependency>
169
		<dependency>
170
			<groupId>junit</groupId>
171
			<artifactId>junit</artifactId>
172
			<version>${junit.version}</version>
173
			<scope>test</scope>
174
		</dependency>
175
		<dependency>
176
			<groupId>org.apache.logging.log4j</groupId>
177
			<artifactId>log4j-slf4j-impl</artifactId>
178
			<version>2.0.2</version>
179
			<scope>test</scope>
180
		</dependency>
181
		<dependency>
182
			<groupId>org.apache.httpcomponents</groupId>
183
			<artifactId>httpclient</artifactId>
184
			<version>4.3.1</version>
185
		</dependency>		
186
	</dependencies>
187
</project>
(2-2/2)