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-metrics-primary</artifactId>
11
	<packaging>jar</packaging>
12
	<!-- <version>0.0.1-SNAPSHOT</version> -->
13
	<properties>
14
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15
	</properties>
16
	<dependencies>
17
        <dependency>
18
			<groupId>eu.dnetlib</groupId>
19
			<artifactId>icm-iis-core</artifactId>
20
			<version>1.0.0-SNAPSHOT</version>
21
		</dependency>
22
		<dependency>
23
			<groupId>eu.dnetlib</groupId>
24
			<artifactId>icm-iis-core</artifactId>
25
			<version>1.0.0-SNAPSHOT</version>
26
			<type>test-jar</type>
27
			<scope>test</scope>
28
		</dependency>
29
        <dependency>
30
            <groupId>eu.dnetlib</groupId>
31
            <artifactId>icm-iis-schemas</artifactId>
32
            <version>1.0.0-SNAPSHOT</version>
33
        </dependency>
34
		<!-- Needed by Oozie tests { -->
35
		<!-- required after introducing 'provided' scope for hadoop dependencies -->
36
		<dependency>
37
			<groupId>org.apache.hadoop</groupId>
38
			<artifactId>hadoop-common</artifactId>
39
			<version>${iis.hadoop.common.version}</version>
40
			<scope>test</scope>
41
		</dependency>
42
		<dependency>
43
			<groupId>org.apache.hadoop</groupId>
44
			<artifactId>hadoop-hdfs</artifactId>
45
			<version>${iis.hadoop.hdfs.version}</version>
46
			<scope>test</scope>
47
		</dependency>
48
		<dependency>
49
			<groupId>org.apache.oozie</groupId>
50
			<artifactId>oozie-core</artifactId>
51
			<version>${iis.oozie.version}</version>
52
			<scope>test</scope>
53
		</dependency>
54
		<!-- PigMain was moved to oozie-sharelib-pig since cdh4.3.1 -->
55
		<dependency>
56
			<groupId>org.apache.oozie</groupId>
57
			<artifactId>oozie-sharelib-pig</artifactId>
58
			<version>${iis.oozie.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
		</dependency>
96
		<dependency>
97
			<groupId>org.antlr</groupId>
98
			<artifactId>antlr-runtime</artifactId>
99
			<version>3.4</version>
100
		</dependency>
101
	    <dependency>
102
			<groupId>eu.dnetlib</groupId>
103
			<artifactId>icm-iis-3rdparty-pig-avrostorage</artifactId>
104
			<version>1.0.0-SNAPSHOT</version>
105
			<type>jar</type>
106
		</dependency>
107
		
108
		
109
		<!-- Needed to run Pig jobs } -->
110
	 <!--dependency>
111
	  <groupId>eu.dnetlib</groupId>
112
	  <artifactId>icm-iis-assembly-resources</artifactId>
113
	  <version>0.0.1-SNAPSHOT</version>
114
	  <scope>test</scope>
115
	  <type>jar</type>
116
	 </dependency-->
117
	</dependencies>
118
	<build>
119
		<plugins>
120
            <plugin>
121
				<groupId>org.apache.maven.plugins</groupId>
122
				<artifactId>maven-compiler-plugin</artifactId>
123
				<configuration>
124
					<source>1.6</source>
125
					<target>1.6</target>
126
				</configuration>
127
			</plugin>
128
		</plugins>
129
	</build>
130
	<repositories>
131
        <repository>
132
			<id>cloudera</id>
133
			<name>Cloudera Repository</name>
134
			<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
135
			<releases>
136
				<enabled>true</enabled>
137
			</releases>
138
			<snapshots>
139
				<enabled>false</enabled>
140
			</snapshots>
141
		</repository>
142
	    <!-- This repository contains our patched 
143
	    version of "avro" and "avro-mapred" modules (see the dependencies section)
144
	    This entry might be removed when the patch to these modules becomes 
145
	    a part of the official Avro release.-->
146
	    <repository>
147
			<id>dnet-deps</id>
148
			<name>dnet dependencies</name>
149
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
150
			<releases>
151
				<enabled>true</enabled>
152
			</releases>
153
			<snapshots>
154
				<enabled>false</enabled>
155
			</snapshots>
156
			<layout>default</layout>
157
		</repository>
158
	</repositories>
159
</project>
    (1-1/1)