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.2</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.1.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>org.apache.hadoop</groupId>
43
			<artifactId>hadoop-common</artifactId>
44
			<version>${hadoop.common.version}</version>
45
		</dependency>				
46
		<dependency>
47
			<groupId>org.apache.hbase</groupId>
48
			<artifactId>hbase</artifactId>
49
			<version>${apache.hbase.version}</version>
50
			<exclusions>
51
				<exclusion>
52
					<groupId>tomcat</groupId>
53
					<artifactId>jasper-runtime</artifactId>
54
				</exclusion>
55
				<exclusion>
56
					<groupId>tomcat</groupId>
57
					<artifactId>jasper-compiler</artifactId>
58
				</exclusion>			
59
				<exclusion>
60
					<artifactId>slf4j-api</artifactId>
61
					<groupId>org.slf4j</groupId>
62
				</exclusion>
63
				<exclusion>
64
					<artifactId>slf4j-log4j12</artifactId>
65
					<groupId>org.slf4j</groupId>
66
				</exclusion>
67
				<exclusion>
68
					<artifactId>commons-lang</artifactId>
69
					<groupId>commons-lang</groupId>
70
				</exclusion>
71
				<exclusion>
72
					<artifactId>commons-httpclient</artifactId>
73
					<groupId>commons-httpclient</groupId>
74
				</exclusion>
75
				<exclusion>
76
					<artifactId>httpclient</artifactId>
77
					<groupId>org.apache.httpcomponents</groupId>
78
				</exclusion>
79
				<exclusion>
80
					<artifactId>httpcore</artifactId>
81
					<groupId>org.apache.httpcomponents</groupId>
82
				</exclusion>
83
			</exclusions>
84
		</dependency>
85
		<dependency>
86
			<groupId>junit</groupId>
87
			<artifactId>junit</artifactId>
88
			<version>${junit.version}</version>
89
			<scope>test</scope>
90
		</dependency>
91
	</dependencies>
92
</project>
(2-2/2)