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"
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-hadoop-commons</artifactId>
13
	<packaging>jar</packaging>
14
	<version>1.0.0-SNAPSHOT</version>
15
	<repositories>
16
		<!-- Cloudera Repositories -->
17
		<repository>
18
			<snapshots>
19
				<enabled>false</enabled>
20
			</snapshots>
21
			<id>cloudera-central</id>
22
			<name>cloundera-libs-release</name>
23
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
24
		</repository>
25
		<repository>
26
			<id>cloudera-snapshots</id>
27
			<name>cloudera-libs-snapshot</name>
28
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
29
		</repository>
30
		<repository>
31
			<id>typesafe</id>
32
			<name>typesafe-releases</name>
33
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/typesafe</url>
34
		</repository>
35
	</repositories>
36

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

    
101

    
102
		<!-- DO NOT REMOVE THIS DEPENDENCY!!! MODULES ACCESSING HDFS NEEDS IT EVEN 
103
			IF mvn dependency:analyze SUGGESTS TO REMOVE IT -->
104
		<dependency>
105
			<groupId>org.apache.hadoop</groupId>
106
			<artifactId>hadoop-hdfs</artifactId>
107
			<version>${hadoop.hdfs.version}</version>
108
			<exclusions>
109
				<exclusion>
110
					<groupId>javax.servlet</groupId>
111
					<artifactId>servlet-api</artifactId>
112
				</exclusion>
113
				<exclusion>
114
					<artifactId>jsp-api</artifactId>
115
					<groupId>javax.servlet.jsp</groupId>
116
				</exclusion>
117
			</exclusions>
118
		</dependency>
119
	</dependencies>
120
</project>
(2-2/2)