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
<!-- 			<plugin> -->
16
<!-- 				<groupId>org.apache.maven.plugins</groupId> -->
17
<!-- 				<artifactId>maven-compiler-plugin</artifactId> -->
18
<!-- 				<version>3.1</version> -->
19
<!-- 				<configuration> -->
20
<!-- 					<source>1.6</source> -->
21
<!-- 					<target>1.6</target> -->
22
<!-- 				</configuration> -->
23
<!-- 			</plugin> -->
24
		</plugins>
25
	</build>
26
	<dependencies>
27
		<!-- this is needed for hdfs export jobs- incompatibility with protos 2.5 
28
			<dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> 
29
			<version>2.4.1</version> </dependency> -->
30
		<!-- <dependency> -->
31
		<!-- <groupId>com.google.protobuf</groupId> -->
32
		<!-- <artifactId>protobuf-java</artifactId> -->
33
		<!-- <version>2.5.0</version> -->
34
		<!-- </dependency> -->
35
 
36
		<dependency>
37
			<groupId>org.slf4j</groupId>
38
			<artifactId>slf4j-api</artifactId>
39
			<version>1.7.6</version>
40
		</dependency>
41
		<dependency>
42
			<groupId>org.slf4j</groupId>
43
			<artifactId>slf4j-log4j12</artifactId>
44
			<version>1.7.6</version>
45
		</dependency>
46
		<dependency>
47
			<groupId>eu.dnetlib</groupId>
48
			<artifactId>dnet-mapreduce-jobs</artifactId>
49
			<version>0.0.4-SNAPSHOT</version>
50
		</dependency>
51
		<dependency>
52
			<groupId>org.apache.httpcomponents</groupId>
53
			<artifactId>httpclient</artifactId>
54
			<version>4.0-alpha4</version>
55
		</dependency>
56
		<dependency>
57
			<groupId>commons-httpclient</groupId>
58
			<artifactId>commons-httpclient</artifactId>
59
			<version>3.1</version>
60
		</dependency>
61
		<dependency>
62
			<groupId>junit</groupId>
63
			<artifactId>junit</artifactId>
64
			<version>4.8.2</version>
65
		</dependency>
66
		<dependency>
67
			<groupId>org.apache.sqoop</groupId>
68
			<artifactId>sqoop</artifactId>
69
			<version>1.4.4</version>
70
		</dependency>
71
		<dependency>
72
			<groupId>postgresql</groupId>
73
			<artifactId>postgresql</artifactId>
74
			<version>9.1-901.jdbc4</version>
75
		</dependency>
76

    
77
	</dependencies>
78
	<repositories>
79
		<repository>
80
			<id>cloudera</id>
81
			<name>Cloudera Repository</name>
82
			<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
83
			<releases>
84
				<enabled>true</enabled>
85
			</releases>
86
			<snapshots>
87
				<enabled>false</enabled>
88
			</snapshots>
89
		</repository>
90
	</repositories>
91
</project>
    (1-1/1)