Project

General

Profile

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-CDH-5.3.0-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-CDH-5.3.0-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
		<dependency>
56
			<groupId>org.apache.hadoop</groupId>
57
			<artifactId>hadoop-hdfs</artifactId>
58
			<version>${iis.hadoop.hdfs.version}</version>
59
			<scope>test</scope>
60
		</dependency>
61
		<!-- end of required after introducing 'provided' scope for hadoop dependencies -->
62
		<dependency>
63
			<groupId>org.apache.oozie</groupId>
64
			<artifactId>oozie-core</artifactId>
65
			<version>${iis.oozie.version}</version>
66
			<type>test-jar</type>
67
			<scope>test</scope>
68
		</dependency>
69
		<dependency>
70
			<groupId>org.apache.hadoop</groupId>
71
			<artifactId>hadoop-hdfs</artifactId>
72
			<version>${iis.hadoop.hdfs.version}</version>
73
			<type>test-jar</type>
74
			<scope>test</scope>
75
		</dependency>
76
		<dependency>
77
			<groupId>org.apache.hadoop</groupId>
78
			<artifactId>hadoop-test</artifactId>
79
			<version>${iis.hadoop.test.version}</version>
80
			<scope>test</scope>
81
		</dependency>
82
		<dependency>
83
			<groupId>org.apache.hadoop</groupId>
84
			<artifactId>hadoop-common</artifactId>
85
			<version>${iis.hadoop.common.version}</version>
86
			<type>test-jar</type>
87
			<scope>test</scope>
88
		</dependency>
89
		<!-- Needed by Oozie tests } -->
90
		<!-- Needed to run Pig jobs { -->
91
		<dependency>
92
			<groupId>org.apache.pig</groupId>
93
			<artifactId>pig</artifactId>
94
			<version>${iis.pig.version}</version>
95
			<!-- this lib cannot be set to provided -->
96
		</dependency>
97

    
98
		<!-- replacing hacked pig-avrostorage with original pig -->
99
	    <!-- 
100
	    <dependency>
101
			<groupId>eu.dnetlib</groupId>
102
			<artifactId>icm-iis-3rdparty-pig-avrostorage</artifactId>
103
			<version>[1.0.0,2.0.0)</version>
104
			<type>jar</type>
105
		</dependency>
106
		 -->
107
		<dependency>
108
			<groupId>org.apache.pig</groupId>
109
			<artifactId>piggybank</artifactId>
110
			<version>${iis.pig.version}</version>
111
		</dependency>
112
		<dependency>
113
		  <groupId>com.linkedin.datafu</groupId>
114
		  <artifactId>datafu</artifactId>
115
		  <version>1.2.0</version>
116
		</dependency>
117
		<!-- Needed to run Pig jobs } -->
118
	</dependencies>
119
	<repositories>
120
	    <!-- This repository contains our patched 
121
	    version of "avro" and "avro-mapred" modules (see the dependencies section)
122
	    This entry might be removed when the patch to these modules becomes 
123
	    a part of the official Avro release.-->
124
	    <repository>
125
			<id>dnet-deps</id>
126
			<name>dnet dependencies</name>
127
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
128
			<releases>
129
				<enabled>true</enabled>
130
			</releases>
131
			<snapshots>
132
				<enabled>false</enabled> 
133
			</snapshots>
134
			<layout>default</layout>
135
		</repository>
136
	</repositories>
137
</project>
(2-2/2)