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>dnet-hadoop-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-actionmanager-common</artifactId>
12
	<packaging>jar</packaging>
13
	<version>2.2.0</version>
14
	<scm>
15
	  <developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/dnet-actionmanager-common/tags/dnet-actionmanager-common-2.2.0</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
	</repositories>	
33
	<dependencies>
34
		<dependency>
35
			<groupId>apache</groupId>
36
			<artifactId>commons-logging</artifactId>
37
			<version>[1.0.0,1.1.0)</version>
38
		</dependency>
39
		<dependency>
40
			<groupId>eu.dnetlib</groupId>
41
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
42
			<version>[3.0.0,4.0.0)</version>
43
			<exclusions>
44
				<exclusion>
45
					<artifactId>jsp-api</artifactId>
46
					<groupId>javax.servlet.jsp</groupId>
47
				</exclusion>
48
			</exclusions>
49
		</dependency>
50
		<dependency>
51
			<groupId>eu.dnetlib</groupId>
52
			<artifactId>dnet-actionmanager-api</artifactId>
53
			<version>[3.0.0,4.0.0)</version>
54
		</dependency>
55
		<dependency>
56
			<groupId>org.apache.hadoop</groupId>
57
			<artifactId>hadoop-common</artifactId>
58
			<version>${hadoop.common.version}</version>
59
			<exclusions>
60
				<exclusion>
61
					<artifactId>servlet-api</artifactId>
62
					<groupId>javax.servlet</groupId>
63
				</exclusion>
64
				<exclusion>
65
					<artifactId>jsp-api</artifactId>
66
					<groupId>javax.servlet.jsp</groupId>
67
				</exclusion>
68
			</exclusions>
69
		</dependency>				
70
		<dependency>
71
			<groupId>org.apache.hbase</groupId>
72
			<artifactId>hbase</artifactId>
73
			<version>${apache.hbase.version}</version>
74
			<exclusions>
75
				<exclusion>
76
					<groupId>tomcat</groupId>
77
					<artifactId>jasper-runtime</artifactId>
78
				</exclusion>
79
				<exclusion>
80
					<groupId>tomcat</groupId>
81
					<artifactId>jasper-compiler</artifactId>
82
				</exclusion>			
83
				<exclusion>
84
					<artifactId>slf4j-api</artifactId>
85
					<groupId>org.slf4j</groupId>
86
				</exclusion>
87
				<exclusion>
88
					<artifactId>slf4j-log4j12</artifactId>
89
					<groupId>org.slf4j</groupId>
90
				</exclusion>
91
				<exclusion>
92
					<artifactId>commons-lang</artifactId>
93
					<groupId>commons-lang</groupId>
94
				</exclusion>
95
				<exclusion>
96
					<artifactId>commons-httpclient</artifactId>
97
					<groupId>commons-httpclient</groupId>
98
				</exclusion>
99
				<exclusion>
100
					<artifactId>httpclient</artifactId>
101
					<groupId>org.apache.httpcomponents</groupId>
102
				</exclusion>
103
				<exclusion>
104
					<artifactId>httpcore</artifactId>
105
					<groupId>org.apache.httpcomponents</groupId>
106
				</exclusion>
107
				<exclusion>
108
					<artifactId>jsp-api-2.1</artifactId>
109
					<groupId>org.mortbay.jetty</groupId>
110
				</exclusion>
111
			</exclusions>
112
		</dependency>
113
		<dependency>
114
			<groupId>junit</groupId>
115
			<artifactId>junit</artifactId>
116
			<version>${junit.version}</version>
117
			<scope>test</scope>
118
		</dependency>
119
		<dependency>
120
			<groupId>org.springframework</groupId>
121
			<artifactId>spring-context</artifactId>
122
			<version>${spring.version}</version>
123
			<scope>test</scope>
124
		</dependency>
125
	</dependencies>
126
</project>
(3-3/3)