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
		<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.3-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>https://maven.d4science.org/nexus/content/repositories/cloudera-central</url>
26
		</repository>
27
		<repository>
28
			<id>cloudera-snapshots</id>
29
			<name>cloudera-libs-snapshot</name>
30
			<url>https://maven.d4science.org/nexus/content/repositories/cloudera-snapshots</url>
31
		</repository>
32
		<repository>
33
			<id>typesafe</id>
34
			<name>typesafe-releases</name>
35
			<url>https://maven.d4science.org/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
                                        <artifactId>mockito-all</artifactId>
58
                                        <groupId>org.mockito</groupId>
59
                                </exclusion>
60
                                <exclusion>
61
                                        <artifactId>jetty</artifactId>
62
                                        <groupId>org.mortbay.jetty</groupId>
63
                                </exclusion>
64
                                <exclusion>
65
                                        <artifactId>jetty-util</artifactId>
66
                                        <groupId>org.mortbay.jetty</groupId>
67
                                </exclusion>
68
                                <exclusion>
69
                                        <artifactId>core</artifactId>
70
                                        <groupId>org.eclipse.jdt</groupId>
71
                                </exclusion>
72
				<exclusion>
73
					<groupId>javax.servlet</groupId>
74
					<artifactId>servlet-api</artifactId>
75
				</exclusion>
76
				<exclusion>
77
					<artifactId>slf4j-api</artifactId>
78
					<groupId>org.slf4j</groupId>
79
				</exclusion>
80
				<exclusion>
81
					<artifactId>slf4j-log4j12</artifactId>
82
					<groupId>org.slf4j</groupId>
83
				</exclusion>
84
				<exclusion>
85
					<artifactId>jsp-api</artifactId>
86
					<groupId>javax.servlet.jsp</groupId>
87
				</exclusion>
88
				<exclusion>
89
					<artifactId>guava</artifactId>
90
					<groupId>com.google.guava</groupId>
91
				</exclusion>
92
			</exclusions>
93
		</dependency>
94
		<dependency>
95
			<groupId>org.apache.hadoop</groupId>
96
			<artifactId>hadoop-core</artifactId>
97
			<version>${hadoop.core.version}</version>
98
			<exclusions>
99
                                <exclusion>
100
                                        <artifactId>core</artifactId>
101
                                        <groupId>org.eclipse.jdt</groupId>
102
                                </exclusion>
103
                                <exclusion>
104
                                        <artifactId>jetty</artifactId>
105
                                        <groupId>org.mortbay.jetty</groupId>
106
                                </exclusion>
107
                                <exclusion>
108
                                        <artifactId>jetty-util</artifactId>
109
                                        <groupId>org.mortbay.jetty</groupId>
110
                                </exclusion>
111

    
112
				<exclusion>
113
					<groupId>tomcat</groupId>
114
					<artifactId>jasper-runtime</artifactId>
115
				</exclusion>
116
				<exclusion>
117
					<groupId>tomcat</groupId>
118
					<artifactId>jasper-compiler</artifactId>
119
				</exclusion>
120
				<exclusion>
121
					<artifactId>jsp-api</artifactId>
122
					<groupId>javax.servlet.jsp</groupId>
123
				</exclusion>
124
				<exclusion>
125
					<groupId>javax.servlet</groupId>
126
					<artifactId>servlet-api</artifactId>
127
				</exclusion>
128
			</exclusions>
129
		</dependency>
130
		<dependency>
131
			<groupId>org.springframework</groupId>
132
			<artifactId>spring-beans</artifactId>
133
			<version>${spring.version}</version>
134
		</dependency>
135

    
136

    
137
		<!-- DO NOT REMOVE THIS DEPENDENCY!!! MODULES ACCESSING HDFS NEEDS IT EVEN 
138
			IF mvn dependency:analyze SUGGESTS TO REMOVE IT -->
139
		<dependency>
140
			<groupId>org.apache.hadoop</groupId>
141
			<artifactId>hadoop-hdfs</artifactId>
142
			<version>${hadoop.hdfs.version}</version>
143
			<exclusions>
144
                                <exclusion>
145
                                        <artifactId>jasper-runtime</artifactId>
146
                                        <groupId>tomcat</groupId>
147
                                </exclusion>
148
                                <exclusion>
149
                                        <artifactId>jetty</artifactId>
150
                                        <groupId>org.mortbay.jetty</groupId>
151
                                </exclusion>
152
                                <exclusion>
153
                                        <artifactId>jetty-util</artifactId>
154
                                        <groupId>org.mortbay.jetty</groupId>
155
                                </exclusion>
156
				<exclusion>
157
					<groupId>javax.servlet</groupId>
158
					<artifactId>servlet-api</artifactId>
159
				</exclusion>
160
				<exclusion>
161
					<artifactId>jsp-api</artifactId>
162
					<groupId>javax.servlet.jsp</groupId>
163
				</exclusion>
164
				<exclusion>
165
					<artifactId>guava</artifactId>
166
					<groupId>com.google.guava</groupId>
167
				</exclusion>
168
			</exclusions>
169
		</dependency>
170
	</dependencies>
171
</project>
(2-2/2)