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>dnet45-parent</artifactId>
6
		<version>1.0.0</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.7.6-SNAPSHOT</version>
13
	<scm>
14
	    <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-hadoop-service/trunk</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-hadoop-commons</artifactId>
62
			<version>[2.0.0,3.0.0)</version>
63
		</dependency>
64
<!--
65
		<dependency>
66
			<groupId>eu.dnetlib</groupId>
67
			<artifactId>dnet-mapreduce-submitter</artifactId>
68
			<version>[3.0.0,4.0.0)</version>
69
		</dependency>
70
-->
71
		<dependency>
72
			<groupId>org.apache.hbase</groupId>
73
			<artifactId>hbase</artifactId>
74
			<version>${apache.hbase.version}</version>
75
			<exclusions>
76
                                <exclusion>
77
                                        <artifactId>jasper-compiler</artifactId>
78
                                        <groupId>tomcat</groupId>
79
                                </exclusion>
80
                                <exclusion>
81
                                        <artifactId>jasper-runtime</artifactId>
82
                                        <groupId>tomcat</groupId>
83
                                </exclusion>
84
                                <exclusion>
85
                                        <artifactId>jamon-runtime</artifactId>
86
                                        <groupId>org.jamon</groupId>
87
                                </exclusion>
88
				<exclusion>
89
					<artifactId>jsp-api-2.1</artifactId>
90
					<groupId>org.mortbay.jetty</groupId>
91
				</exclusion>
92
                                <exclusion>
93
                                        <artifactId>jsp-2.1</artifactId>
94
                                        <groupId>org.mortbay.jetty</groupId>
95
                                </exclusion>
96
				<exclusion>
97
					<artifactId>servlet-api-2.5</artifactId>
98
					<groupId>org.mortbay.jetty</groupId>
99
				</exclusion>
100
                                <exclusion>
101
                                        <artifactId>jetty</artifactId>
102
                                        <groupId>org.mortbay.jetty</groupId>
103
                                </exclusion>
104
                                <exclusion>
105
                                        <artifactId>jetty-util</artifactId>
106
                                        <groupId>org.mortbay.jetty</groupId>
107
                                </exclusion>
108
				<exclusion>
109
					<artifactId>slf4j-api</artifactId>
110
					<groupId>org.slf4j</groupId>
111
				</exclusion>
112
				<exclusion>
113
					<artifactId>slf4j-log4j12</artifactId>
114
					<groupId>org.slf4j</groupId>
115
				</exclusion>
116
				<exclusion>
117
					<artifactId>stax-api</artifactId>
118
					<groupId>stax</groupId>
119
				</exclusion>
120
				<exclusion>
121
					<artifactId>httpclient</artifactId>
122
					<groupId>org.apache.httpcomponents</groupId>
123
				</exclusion>
124
				<exclusion>
125
					<artifactId>guava</artifactId>
126
					<groupId>com.google.guava</groupId>
127
				</exclusion>
128
				<exclusion>
129
					<artifactId>asm</artifactId>
130
					<groupId>asm</groupId>
131
				</exclusion>
132
				<exclusion>
133
					<artifactId>jaxb-api</artifactId>
134
					<groupId>javax.xml.bind</groupId>
135
				</exclusion>
136
				<exclusion>
137
					<artifactId>jaxb-impl</artifactId>
138
					<groupId>com.sun.xml.bind</groupId>
139
				</exclusion>
140
				<exclusion>
141
					<artifactId>commons-codec</artifactId>
142
					<groupId>commons-codec</groupId>
143
				</exclusion>
144
                                <exclusion>
145
                                        <artifactId>commons-logging</artifactId>
146
                                        <groupId>commons-logging</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
                <dependency>
187
                        <groupId>commons-codec</groupId>
188
                        <artifactId>commons-codec</artifactId>
189
                        <version>${commons.codec.version}</version>
190
                </dependency>
191
                <dependency>
192
                        <groupId>commons-net</groupId>
193
                        <artifactId>commons-net</artifactId>
194
                        <version>${commons.net.version}</version>
195
                </dependency>
196
		<dependency>
197
                  <groupId>org.apache.commons</groupId>
198
                  <artifactId>commons-compress</artifactId>
199
                  <version>${commons.compress.version}</version>
200
		</dependency>
201

    
202
	</dependencies>
203
</project>
(2-2/2)