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>dnet45-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>2.0.0-SNAPSHOT</version>
|
17
|
|
18
|
<dependencies>
|
19
|
<dependency>
|
20
|
<groupId>com.googlecode.json-simple</groupId>
|
21
|
<artifactId>json-simple</artifactId>
|
22
|
<version>1.1.1</version>
|
23
|
</dependency>
|
24
|
<dependency>
|
25
|
<groupId>org.apache.hadoop</groupId>
|
26
|
<artifactId>hadoop-common</artifactId>
|
27
|
<version>${hadoop.common.version}</version>
|
28
|
</dependency>
|
29
|
</dependencies>
|
30
|
|
31
|
<repositories>
|
32
|
<repository>
|
33
|
<id>cloudera</id>
|
34
|
<name>Cloudera Repository</name>
|
35
|
<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
|
36
|
<releases>
|
37
|
<enabled>true</enabled>
|
38
|
</releases>
|
39
|
<snapshots>
|
40
|
<enabled>false</enabled>
|
41
|
</snapshots>
|
42
|
</repository>
|
43
|
</repositories>
|
44
|
|
45
|
</project>
|