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"
3
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
	<parent>
5
		<groupId>eu.dnetlib</groupId>
6
		<artifactId>icm-iis-parent-container</artifactId>
7
		<version>1.0.0</version>
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<artifactId>icm-iis-transformers</artifactId>
11
	<packaging>jar</packaging>
12
	<version>1.0.0-SNAPSHOT</version>
13

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