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-parent</artifactId>
7
		<version>0.0.1-alpha</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>1.0.3</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>eu.dnetlib</groupId>
33
			<artifactId>dnet-openaireplus-mapping-utils</artifactId>
34
			<version>[0.2.0,)</version>
35
		</dependency>
36
		<dependency>
37
			<groupId>eu.dnetlib</groupId>
38
			<artifactId>dnet-actionmanager-api</artifactId>
39
			<version>[1.0]</version>
40
		</dependency>
41
		<dependency>
42
			<groupId>xalan</groupId>
43
			<artifactId>xalan</artifactId>
44
			<version>2.7.1</version>
45
			<scope>provided</scope>
46
		</dependency>
47
		<dependency>
48
			<groupId>org.apache.hadoop</groupId>
49
			<artifactId>hadoop-common</artifactId>
50
			<version>${hadoop.common.version}</version>
51
		</dependency>
52
		<dependency>
53
			<groupId>org.apache.hbase</groupId>
54
			<artifactId>hbase</artifactId>
55
			<version>${apache.hbase.version}</version>
56
			<exclusions>
57
				<exclusion>
58
					<groupId>tomcat</groupId>
59
					<artifactId>jasper-runtime</artifactId>
60
				</exclusion>
61
				<exclusion>
62
					<groupId>tomcat</groupId>
63
					<artifactId>jasper-compiler</artifactId>
64
				</exclusion>			
65
				<exclusion>
66
					<artifactId>slf4j-api</artifactId>
67
					<groupId>org.slf4j</groupId>
68
				</exclusion>
69
				<exclusion>
70
					<artifactId>slf4j-log4j12</artifactId>
71
					<groupId>org.slf4j</groupId>
72
				</exclusion>
73
				<exclusion>
74
					<artifactId>commons-lang</artifactId>
75
					<groupId>commons-lang</groupId>
76
				</exclusion>
77
				<exclusion>
78
					<artifactId>commons-httpclient</artifactId>
79
					<groupId>commons-httpclient</groupId>
80
				</exclusion>
81
				<exclusion>
82
					<artifactId>httpclient</artifactId>
83
					<groupId>org.apache.httpcomponents</groupId>
84
				</exclusion>
85
				<exclusion>
86
					<artifactId>httpcore</artifactId>
87
					<groupId>org.apache.httpcomponents</groupId>
88
				</exclusion>
89
			</exclusions>
90
		</dependency>
91
		<dependency>
92
			<groupId>junit</groupId>
93
			<artifactId>junit</artifactId>
94
			<version>${junit.version}</version>
95
			<scope>test</scope>
96
		</dependency>
97
	</dependencies>
98
</project>
(2-2/2)