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