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>org.apache.oozie</groupId>
25
			<artifactId>oozie-sharelib-pig</artifactId>
26
			<version>${iis.oozie.version}</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
		</dependency>
33
		<dependency>
34
			<groupId>eu.dnetlib</groupId>
35
			<artifactId>icm-iis-core</artifactId>
36
			<version>[1.0.0,2.0.0)</version>
37
			<type>test-jar</type>
38
			<scope>test</scope>
39
		</dependency>
40
        <dependency>
41
            <groupId>eu.dnetlib</groupId>
42
            <artifactId>icm-iis-schemas</artifactId>
43
            <version>[1.0.0,2.0.0)</version>
44
        </dependency>
45
        <!-- required after introducing 'provided' scope for hadoop libs -->
46
        <dependency>
47
			<groupId>org.apache.hadoop</groupId>
48
			<artifactId>hadoop-common</artifactId>
49
			<version>${iis.hadoop.common.version}</version>
50
			<scope>provided</scope>
51
		</dependency>
52
		<!-- Needed by Oozie tests { -->
53
		<!-- required after introducing 'provided' scope for hadoop dependencies -->
54
		<dependency>
55
			<groupId>org.apache.oozie</groupId>
56
			<artifactId>oozie-core</artifactId>
57
			<version>${iis.oozie.version}</version>
58
			<scope>test</scope>
59
		</dependency>
60
		<dependency>
61
			<groupId>org.apache.hadoop</groupId>
62
			<artifactId>hadoop-hdfs</artifactId>
63
			<version>${iis.hadoop.hdfs.version}</version>
64
			<scope>test</scope>
65
		</dependency>
66
		<!-- end of required after introducing 'provided' scope for hadoop dependencies -->
67
		<dependency>
68
			<groupId>org.apache.oozie</groupId>
69
			<artifactId>oozie-core</artifactId>
70
			<version>${iis.oozie.version}</version>
71
			<type>test-jar</type>
72
			<scope>test</scope>
73
		</dependency>
74
		<dependency>
75
			<groupId>org.apache.hadoop</groupId>
76
			<artifactId>hadoop-hdfs</artifactId>
77
			<version>${iis.hadoop.hdfs.version}</version>
78
			<type>test-jar</type>
79
			<scope>test</scope>
80
		</dependency>
81
		<dependency>
82
			<groupId>org.apache.hadoop</groupId>
83
			<artifactId>hadoop-test</artifactId>
84
			<version>${iis.hadoop.test.version}</version>
85
			<scope>test</scope>
86
		</dependency>
87
		<dependency>
88
			<groupId>org.apache.hadoop</groupId>
89
			<artifactId>hadoop-common</artifactId>
90
			<version>${iis.hadoop.common.version}</version>
91
			<type>test-jar</type>
92
			<scope>test</scope>
93
		</dependency>
94
		<!-- Needed by Oozie tests } -->
95
		<!-- Needed to run Pig jobs { -->
96
		<dependency>
97
			<groupId>org.apache.pig</groupId>
98
			<artifactId>pig</artifactId>
99
			<version>${iis.pig.version}</version>
100
			<!-- this lib cannot be set to provided -->
101
		</dependency>
102
	    <dependency>
103
			<groupId>eu.dnetlib</groupId>
104
			<artifactId>icm-iis-3rdparty-pig-avrostorage</artifactId>
105
			<version>[1.0.0,2.0.0)</version>
106
			<type>jar</type>
107
		</dependency>
108
		<!-- Needed to run Pig jobs } -->
109
	</dependencies>
110
	<repositories>
111
	    <!-- This repository contains our patched 
112
	    version of "avro" and "avro-mapred" modules (see the dependencies section)
113
	    This entry might be removed when the patch to these modules becomes 
114
	    a part of the official Avro release.-->
115
	    <repository>
116
			<id>dnet-deps</id>
117
			<name>dnet dependencies</name>
118
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
119
			<releases>
120
				<enabled>true</enabled>
121
			</releases>
122
			<snapshots>
123
				<enabled>false</enabled> 
124
			</snapshots>
125
			<layout>default</layout>
126
		</repository>
127
	</repositories>
128
</project>
(2-2/2)