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
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-actionmanager-common</artifactId>
12
	<packaging>jar</packaging>
13
	<version>2.0.0-SNAPSHOT</version>
14
	<repositories>
15
		<!-- Cloudera Repositories -->
16
		<repository>
17
			<snapshots>
18
				<enabled>false</enabled>
19
			</snapshots>
20
			<id>cloudera-central</id>
21
			<name>cloundera-libs-release</name>
22
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-central</url>
23
		</repository>
24
		<repository>
25
			<id>cloudera-snapshots</id>
26
			<name>cloudera-libs-snapshot</name>
27
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/cloudera-snapshots</url>
28
		</repository>
29
	</repositories>	
30
	<dependencies>
31
		<dependency>
32
			<groupId>apache</groupId>
33
			<artifactId>commons-logging</artifactId>
34
			<version>[1.0.0,1.1.0)</version>
35
		</dependency>
36
		<dependency>
37
			<groupId>eu.dnetlib</groupId>
38
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
39
			<version>[1.0.0-SNAPSHOT,)</version>
40
			<exclusions>
41
				<exclusion>
42
					<artifactId>jsp-api</artifactId>
43
					<groupId>javax.servlet.jsp</groupId>
44
				</exclusion>
45
			</exclusions>
46
		</dependency>
47
		<dependency>
48
			<groupId>eu.dnetlib</groupId>
49
			<artifactId>dnet-actionmanager-api</artifactId>
50
			<version>[2.0.0-SNAPSHOT,)</version>
51
		</dependency>
52
		<dependency>
53
			<groupId>org.apache.hadoop</groupId>
54
			<artifactId>hadoop-common</artifactId>
55
			<version>${hadoop.common.version}</version>
56
			<exclusions>
57
				<exclusion>
58
					<artifactId>servlet-api</artifactId>
59
					<groupId>javax.servlet</groupId>
60
				</exclusion>
61
				<exclusion>
62
					<artifactId>jsp-api</artifactId>
63
					<groupId>javax.servlet.jsp</groupId>
64
				</exclusion>
65
			</exclusions>
66
		</dependency>				
67
		<dependency>
68
			<groupId>org.apache.hbase</groupId>
69
			<artifactId>hbase</artifactId>
70
			<version>${apache.hbase.version}</version>
71
			<exclusions>
72
				<exclusion>
73
					<groupId>tomcat</groupId>
74
					<artifactId>jasper-runtime</artifactId>
75
				</exclusion>
76
				<exclusion>
77
					<groupId>tomcat</groupId>
78
					<artifactId>jasper-compiler</artifactId>
79
				</exclusion>			
80
				<exclusion>
81
					<artifactId>slf4j-api</artifactId>
82
					<groupId>org.slf4j</groupId>
83
				</exclusion>
84
				<exclusion>
85
					<artifactId>slf4j-log4j12</artifactId>
86
					<groupId>org.slf4j</groupId>
87
				</exclusion>
88
				<exclusion>
89
					<artifactId>commons-lang</artifactId>
90
					<groupId>commons-lang</groupId>
91
				</exclusion>
92
				<exclusion>
93
					<artifactId>commons-httpclient</artifactId>
94
					<groupId>commons-httpclient</groupId>
95
				</exclusion>
96
				<exclusion>
97
					<artifactId>httpclient</artifactId>
98
					<groupId>org.apache.httpcomponents</groupId>
99
				</exclusion>
100
				<exclusion>
101
					<artifactId>httpcore</artifactId>
102
					<groupId>org.apache.httpcomponents</groupId>
103
				</exclusion>
104
				<exclusion>
105
					<artifactId>jsp-api-2.1</artifactId>
106
					<groupId>org.mortbay.jetty</groupId>
107
				</exclusion>
108
			</exclusions>
109
		</dependency>
110
		<dependency>
111
			<groupId>junit</groupId>
112
			<artifactId>junit</artifactId>
113
			<version>${junit.version}</version>
114
			<scope>test</scope>
115
		</dependency>
116
		<dependency>
117
			<groupId>org.springframework</groupId>
118
			<artifactId>spring-context</artifactId>
119
			<version>${spring.version}</version>
120
			<scope>test</scope>
121
		</dependency>
122
	</dependencies>
123
</project>
(3-3/3)