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
		<relativePath />
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-hadoop-commons</artifactId>
12
	<packaging>jar</packaging>
13
	<version>2.0.1-SNAPSHOT</version>
14
	<scm>
15
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-hadoop-commons/trunk</developerConnection>
16
	</scm>
17
	<repositories>
18
		<!-- Cloudera Repositories -->
19
		<repository>
20
			<snapshots>
21
				<enabled>false</enabled>
22
			</snapshots>
23
			<id>cloudera-central</id>
24
			<name>cloundera-libs-release</name>
25
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
26
		</repository>
27
		<repository>
28
			<id>cloudera-snapshots</id>
29
			<name>cloudera-libs-snapshot</name>
30
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
31
		</repository>
32
		<repository>
33
			<id>typesafe</id>
34
			<name>typesafe-releases</name>
35
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
36
		</repository>
37
	</repositories>
38

    
39
	<dependencies>
40
		<dependency>
41
			<groupId>eu.dnetlib</groupId>
42
			<artifactId>cnr-misc-utils</artifactId>
43
			<version>[1.0.0,2.0.0)</version>
44
			<exclusions>
45
				<exclusion>
46
					<artifactId>slf4j-api</artifactId>
47
					<groupId>org.slf4j</groupId>
48
				</exclusion>
49
			</exclusions>
50
		</dependency>
51
		<dependency>
52
			<groupId>org.apache.hadoop</groupId>
53
			<artifactId>hadoop-common</artifactId>
54
			<version>${hadoop.common.version}</version>
55
			<exclusions>
56
				<exclusion>
57
					<groupId>javax.servlet</groupId>
58
					<artifactId>servlet-api</artifactId>
59
				</exclusion>
60
				<exclusion>
61
					<artifactId>slf4j-api</artifactId>
62
					<groupId>org.slf4j</groupId>
63
				</exclusion>
64
				<exclusion>
65
					<artifactId>slf4j-log4j12</artifactId>
66
					<groupId>org.slf4j</groupId>
67
				</exclusion>
68
				<exclusion>
69
					<artifactId>jsp-api</artifactId>
70
					<groupId>javax.servlet.jsp</groupId>
71
				</exclusion>
72
				<exclusion>
73
					<artifactId>guava</artifactId>
74
					<groupId>com.google.guava</groupId>
75
				</exclusion>
76
			</exclusions>
77
		</dependency>
78
		<dependency>
79
			<groupId>org.apache.hadoop</groupId>
80
			<artifactId>hadoop-core</artifactId>
81
			<version>${hadoop.core.version}</version>
82
			<exclusions>
83
				<exclusion>
84
					<groupId>tomcat</groupId>
85
					<artifactId>jasper-runtime</artifactId>
86
				</exclusion>
87
				<exclusion>
88
					<groupId>tomcat</groupId>
89
					<artifactId>jasper-compiler</artifactId>
90
				</exclusion>
91
				<exclusion>
92
					<artifactId>jsp-api</artifactId>
93
					<groupId>javax.servlet.jsp</groupId>
94
				</exclusion>
95
				<exclusion>
96
					<groupId>javax.servlet</groupId>
97
					<artifactId>servlet-api</artifactId>
98
				</exclusion>
99
			</exclusions>
100
		</dependency>
101
		<dependency>
102
			<groupId>org.springframework</groupId>
103
			<artifactId>spring-beans</artifactId>
104
			<version>${spring.version}</version>
105
		</dependency>
106

    
107

    
108
		<!-- DO NOT REMOVE THIS DEPENDENCY!!! MODULES ACCESSING HDFS NEEDS IT EVEN 
109
			IF mvn dependency:analyze SUGGESTS TO REMOVE IT -->
110
		<dependency>
111
			<groupId>org.apache.hadoop</groupId>
112
			<artifactId>hadoop-hdfs</artifactId>
113
			<version>${hadoop.hdfs.version}</version>
114
			<exclusions>
115
				<exclusion>
116
					<groupId>javax.servlet</groupId>
117
					<artifactId>servlet-api</artifactId>
118
				</exclusion>
119
				<exclusion>
120
					<artifactId>jsp-api</artifactId>
121
					<groupId>javax.servlet.jsp</groupId>
122
				</exclusion>
123
				<exclusion>
124
					<artifactId>guava</artifactId>
125
					<groupId>com.google.guava</groupId>
126
				</exclusion>
127
			</exclusions>
128
		</dependency>
129
	</dependencies>
130
</project>
(2-2/2)