1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
3
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
5
|
|
6
|
<parent>
|
7
|
<groupId>eu.dnetlib</groupId>
|
8
|
<artifactId>dnet-hadoop-parent</artifactId>
|
9
|
<version>1.0.0</version>
|
10
|
<relativePath></relativePath>
|
11
|
</parent>
|
12
|
|
13
|
<modelVersion>4.0.0</modelVersion>
|
14
|
<groupId>eu.dnetlib</groupId>
|
15
|
<artifactId>dnet-openaire-usage-stats</artifactId>
|
16
|
<version>0.0.1-SNAPSHOT</version>
|
17
|
|
18
|
<dependencies>
|
19
|
|
20
|
<dependency>
|
21
|
<groupId>postgresql</groupId>
|
22
|
<artifactId>postgresql</artifactId>
|
23
|
<version>9.1-901-1.jdbc4</version>
|
24
|
<scope>runtime</scope>
|
25
|
</dependency>
|
26
|
|
27
|
<dependency>
|
28
|
<groupId>junit</groupId>
|
29
|
<artifactId>junit</artifactId>
|
30
|
<version>3.8.1</version>
|
31
|
<scope>test</scope>
|
32
|
</dependency>
|
33
|
|
34
|
<dependency>
|
35
|
<groupId>com.googlecode.json-simple</groupId>
|
36
|
<artifactId>json-simple</artifactId>
|
37
|
<version>1.1.1</version>
|
38
|
</dependency>
|
39
|
<dependency>
|
40
|
<groupId>org.apache.hadoop</groupId>
|
41
|
<artifactId>hadoop-common</artifactId>
|
42
|
<version>2.0.0-cdh4.3.1</version>
|
43
|
</dependency>
|
44
|
|
45
|
</dependencies>
|
46
|
|
47
|
<properties>
|
48
|
<java.version>1.7</java.version>
|
49
|
</properties>
|
50
|
|
51
|
|
52
|
<build>
|
53
|
<plugins>
|
54
|
<plugin>
|
55
|
<groupId>org.apache.maven.plugins</groupId>
|
56
|
<artifactId>maven-compiler-plugin</artifactId>
|
57
|
<configuration>
|
58
|
<source>1.7</source>
|
59
|
<target>1.7</target>
|
60
|
</configuration>
|
61
|
</plugin>
|
62
|
</plugins>
|
63
|
</build>
|
64
|
</project>
|