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-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.6.1-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-mapreduce-submitter</artifactId>
62
			<version>[3.0.0,4.0.0)</version>
63
		</dependency>
64
		<dependency>
65
			<groupId>org.apache.hbase</groupId>
66
			<artifactId>hbase</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
				<exclusion>
94
					<artifactId>guava</artifactId>
95
					<groupId>com.google.guava</groupId>
96
				</exclusion>
97
			</exclusions>
98
		</dependency>
99
		<dependency>
100
			<groupId>org.apache.oozie</groupId>
101
			<artifactId>oozie-client</artifactId>
102
			<version>${apache.oozie.version}</version>
103
			<exclusions>
104
				<exclusion>
105
					<artifactId>slf4j-simple</artifactId>
106
					<groupId>org.slf4j</groupId>
107
				</exclusion>
108
				<exclusion>
109
					<artifactId>slf4j-api</artifactId>
110
					<groupId>org.slf4j</groupId>
111
				</exclusion>
112
				<exclusion>
113
					<artifactId>xercesImpl</artifactId>
114
					<groupId>xerces</groupId>
115
				</exclusion>
116
			</exclusions>
117
		</dependency>
118
		<dependency>
119
			<groupId>junit</groupId>
120
			<artifactId>junit</artifactId>
121
			<version>${junit.version}</version>
122
			<scope>test</scope>
123
		</dependency>
124
		<dependency>
125
			<groupId>org.apache.logging.log4j</groupId>
126
			<artifactId>log4j-slf4j-impl</artifactId>
127
			<version>2.0.2</version>
128
			<scope>test</scope>
129
		</dependency>
130
		<dependency>
131
			<groupId>org.apache.httpcomponents</groupId>
132
			<artifactId>httpclient</artifactId>
133
			<version>4.3.1</version>
134
		</dependency>		
135
	</dependencies>
136
</project>
(2-2/2)