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.0</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<artifactId>icm-iis-transformers</artifactId>
10
	<packaging>jar</packaging>
11
	<version>1.0.0</version>
12

    
13
	<scm>
14
	  <developerConnection>
15
	    scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-transformers/tags/icm-iis-transformers-1.0.0
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</version>
27
		</dependency>
28
		<dependency>
29
			<groupId>eu.dnetlib</groupId>
30
			<artifactId>icm-iis-core</artifactId>
31
			<version>1.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</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
	    <dependency>
105
			<groupId>eu.dnetlib</groupId>
106
			<artifactId>icm-iis-3rdparty-pig-avrostorage</artifactId>
107
			<version>1.0.0</version>
108
			<type>jar</type>
109
		</dependency>
110
		<!-- Needed to run Pig jobs } -->
111
	</dependencies>
112
	<repositories>
113
	    <!-- This repository contains our patched 
114
	    version of "avro" and "avro-mapred" modules (see the dependencies section)
115
	    This entry might be removed when the patch to these modules becomes 
116
	    a part of the official Avro release.-->
117
	    <repository>
118
			<id>dnet-deps</id>
119
			<name>dnet dependencies</name>
120
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
121
			<releases>
122
				<enabled>true</enabled>
123
			</releases>
124
			<snapshots>
125
				<enabled>false</enabled> 
126
			</snapshots>
127
			<layout>default</layout>
128
		</repository>
129
	</repositories>
130
</project>
(2-2/2)