Project

General

Profile

1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
	<parent>
4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet-hadoop-parent</artifactId>
6
		<version>1.0.0-SNAPSHOT</version>
7
		<relativePath></relativePath>
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<groupId>eu.dnetlib</groupId>
11
	<artifactId>dnet-openaire-stats</artifactId>
12
	<version>0.0.1-SNAPSHOT</version>
13
	<build>
14
		<plugins>
15
 
16
		</plugins>
17
	</build>
18
	<dependencies> 
19

    
20
<dependency>
21
    <groupId>jdk.tools</groupId>
22
    <artifactId>jdk.tools</artifactId>
23
    <version>1.7.0_05</version>
24
    <scope>system</scope>
25
    <systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
26
</dependency>
27
 
28
 
29
		<dependency>
30
			<groupId>org.slf4j</groupId>
31
			<artifactId>slf4j-api</artifactId>
32
			<version>1.7.6</version>
33
		</dependency>
34
		<dependency>
35
			<groupId>org.slf4j</groupId>
36
			<artifactId>slf4j-log4j12</artifactId>
37
			<version>1.7.6</version>
38
		</dependency>
39
		<dependency>
40
			<groupId>eu.dnetlib</groupId>
41
			<artifactId>dnet-mapreduce-jobs</artifactId>
42
			<version>0.0.4-SNAPSHOT</version>
43
		</dependency>
44
		<dependency>
45
			<groupId>org.apache.httpcomponents</groupId>
46
			<artifactId>httpclient</artifactId>
47
			<version>4.0-alpha4</version>
48
		</dependency>
49
		<dependency>
50
			<groupId>commons-httpclient</groupId>
51
			<artifactId>commons-httpclient</artifactId>
52
			<version>3.1</version>
53
		</dependency>
54
		<dependency>
55
			<groupId>junit</groupId>
56
			<artifactId>junit</artifactId>
57
			<version>4.8.2</version>
58
		</dependency>
59
		<dependency>
60
			<groupId>org.apache.sqoop</groupId>
61
			<artifactId>sqoop</artifactId>
62
			<version>1.4.4</version>
63
		</dependency>
64
		<dependency>
65
			<groupId>postgresql</groupId>
66
			<artifactId>postgresql</artifactId>
67
			<version>9.1-901.jdbc4</version>
68
		</dependency>
69

    
70
	</dependencies>
71
	<repositories>
72
		<repository>
73
			<id>cloudera</id>
74
			<name>Cloudera Repository</name>
75
			<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
76
			<releases>
77
				<enabled>true</enabled>
78
			</releases>
79
			<snapshots>
80
				<enabled>false</enabled>
81
			</snapshots>
82
		</repository>
83
	</repositories>
84
</project>
    (1-1/1)