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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
3
|
<parent>
|
4
|
<groupId>eu.dnetlib</groupId>
|
5
|
<artifactId>icm-iis-parent-container</artifactId>
|
6
|
<version>1.0.1-SNAPSHOT</version>
|
7
|
</parent>
|
8
|
<modelVersion>4.0.0</modelVersion>
|
9
|
<artifactId>icm-iis-transformers</artifactId>
|
10
|
<packaging>jar</packaging>
|
11
|
<version>1.0.1-SNAPSHOT</version>
|
12
|
|
13
|
<scm>
|
14
|
<developerConnection>
|
15
|
scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-transformers/trunk
|
16
|
</developerConnection>
|
17
|
</scm>
|
18
|
|
19
|
<properties>
|
20
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
21
|
</properties>
|
22
|
<dependencies>
|
23
|
<dependency>
|
24
|
<groupId>eu.dnetlib</groupId>
|
25
|
<artifactId>icm-iis-core</artifactId>
|
26
|
<version>[1.0.0,2.0.0)</version>
|
27
|
</dependency>
|
28
|
<dependency>
|
29
|
<groupId>eu.dnetlib</groupId>
|
30
|
<artifactId>icm-iis-core</artifactId>
|
31
|
<version>[1.0.0,2.0.0)</version>
|
32
|
<type>test-jar</type>
|
33
|
<scope>test</scope>
|
34
|
</dependency>
|
35
|
<dependency>
|
36
|
<groupId>eu.dnetlib</groupId>
|
37
|
<artifactId>icm-iis-schemas</artifactId>
|
38
|
<version>[1.0.0,2.0.0)</version>
|
39
|
</dependency>
|
40
|
<!-- required after introducing 'provided' scope for hadoop libs -->
|
41
|
<dependency>
|
42
|
<groupId>org.apache.hadoop</groupId>
|
43
|
<artifactId>hadoop-common</artifactId>
|
44
|
<version>${iis.hadoop.common.version}</version>
|
45
|
<scope>provided</scope>
|
46
|
</dependency>
|
47
|
<!-- Needed by Oozie tests { -->
|
48
|
<!-- required after introducing 'provided' scope for hadoop dependencies -->
|
49
|
<dependency>
|
50
|
<groupId>org.apache.oozie</groupId>
|
51
|
<artifactId>oozie-core</artifactId>
|
52
|
<version>${iis.oozie.version}</version>
|
53
|
<scope>test</scope>
|
54
|
</dependency>
|
55
|
<!-- PigMain was moved to oozie-sharelib-pig since cdh4.3.1 -->
|
56
|
<dependency>
|
57
|
<groupId>org.apache.oozie</groupId>
|
58
|
<artifactId>oozie-sharelib-pig</artifactId>
|
59
|
<version>${iis.oozie.version}</version>
|
60
|
<scope>test</scope>
|
61
|
</dependency>
|
62
|
<dependency>
|
63
|
<groupId>org.apache.hadoop</groupId>
|
64
|
<artifactId>hadoop-hdfs</artifactId>
|
65
|
<version>${iis.hadoop.hdfs.version}</version>
|
66
|
<scope>test</scope>
|
67
|
</dependency>
|
68
|
<!-- end of required after introducing 'provided' scope for hadoop dependencies -->
|
69
|
<dependency>
|
70
|
<groupId>org.apache.oozie</groupId>
|
71
|
<artifactId>oozie-core</artifactId>
|
72
|
<version>${iis.oozie.version}</version>
|
73
|
<type>test-jar</type>
|
74
|
<scope>test</scope>
|
75
|
</dependency>
|
76
|
<dependency>
|
77
|
<groupId>org.apache.hadoop</groupId>
|
78
|
<artifactId>hadoop-hdfs</artifactId>
|
79
|
<version>${iis.hadoop.hdfs.version}</version>
|
80
|
<type>test-jar</type>
|
81
|
<scope>test</scope>
|
82
|
</dependency>
|
83
|
<dependency>
|
84
|
<groupId>org.apache.hadoop</groupId>
|
85
|
<artifactId>hadoop-test</artifactId>
|
86
|
<version>${iis.hadoop.test.version}</version>
|
87
|
<scope>test</scope>
|
88
|
</dependency>
|
89
|
<dependency>
|
90
|
<groupId>org.apache.hadoop</groupId>
|
91
|
<artifactId>hadoop-common</artifactId>
|
92
|
<version>${iis.hadoop.common.version}</version>
|
93
|
<type>test-jar</type>
|
94
|
<scope>test</scope>
|
95
|
</dependency>
|
96
|
<!-- Needed by Oozie tests } -->
|
97
|
<!-- Needed to run Pig jobs { -->
|
98
|
<dependency>
|
99
|
<groupId>org.apache.pig</groupId>
|
100
|
<artifactId>pig</artifactId>
|
101
|
<version>${iis.pig.version}</version>
|
102
|
<!-- this lib cannot be set to provided -->
|
103
|
</dependency>
|
104
|
|
105
|
<!-- replacing hacked pig-avrostorage with original pig -->
|
106
|
<dependency>
|
107
|
<groupId>eu.dnetlib</groupId>
|
108
|
<artifactId>icm-iis-3rdparty-pig-avrostorage</artifactId>
|
109
|
<version>[1.0.0,2.0.0)</version>
|
110
|
<type>jar</type>
|
111
|
</dependency>
|
112
|
<!-- FIXME change to version bound with CDH5 when upgrading cluster -->
|
113
|
<!--
|
114
|
<dependency>
|
115
|
<groupId>org.apache.pig</groupId>
|
116
|
<artifactId>piggybank</artifactId>
|
117
|
<version>${iis.pig.version}</version>
|
118
|
</dependency>
|
119
|
-->
|
120
|
<dependency>
|
121
|
<groupId>com.linkedin.datafu</groupId>
|
122
|
<artifactId>datafu</artifactId>
|
123
|
<version>1.2.0</version>
|
124
|
</dependency>
|
125
|
<!-- Needed to run Pig jobs } -->
|
126
|
</dependencies>
|
127
|
<repositories>
|
128
|
<!-- This repository contains our patched
|
129
|
version of "avro" and "avro-mapred" modules (see the dependencies section)
|
130
|
This entry might be removed when the patch to these modules becomes
|
131
|
a part of the official Avro release.-->
|
132
|
<repository>
|
133
|
<id>dnet-deps</id>
|
134
|
<name>dnet dependencies</name>
|
135
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
|
136
|
<releases>
|
137
|
<enabled>true</enabled>
|
138
|
</releases>
|
139
|
<snapshots>
|
140
|
<enabled>false</enabled>
|
141
|
</snapshots>
|
142
|
<layout>default</layout>
|
143
|
</repository>
|
144
|
</repositories>
|
145
|
</project>
|