Project

General

Profile

1 17424 marek.hors
<?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 19249 dominika.t
    <parent>
5 17424 marek.hors
		<groupId>eu.dnetlib</groupId>
6 19249 dominika.t
		<artifactId>icm-iis-parent-container</artifactId>
7 26526 marek.hors
		<version>1.0.0-SNAPSHOT</version>
8 17424 marek.hors
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10 20442 marek.hors
	<artifactId>icm-iis-metrics-primary</artifactId>
11 17424 marek.hors
	<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 19249 dominika.t
        <dependency>
18
			<groupId>eu.dnetlib</groupId>
19
			<artifactId>icm-iis-core</artifactId>
20 26526 marek.hors
			<version>1.0.0-SNAPSHOT</version>
21 19249 dominika.t
		</dependency>
22
		<dependency>
23
			<groupId>eu.dnetlib</groupId>
24
			<artifactId>icm-iis-core</artifactId>
25 26526 marek.hors
			<version>1.0.0-SNAPSHOT</version>
26 19249 dominika.t
			<type>test-jar</type>
27
			<scope>test</scope>
28
		</dependency>
29
        <dependency>
30
            <groupId>eu.dnetlib</groupId>
31
            <artifactId>icm-iis-schemas</artifactId>
32 26526 marek.hors
            <version>1.0.0-SNAPSHOT</version>
33 19249 dominika.t
        </dependency>
34
		<!-- Needed by Oozie tests { -->
35 19824 marek.hors
		<!-- required after introducing 'provided' scope for hadoop dependencies -->
36 19249 dominika.t
		<dependency>
37 19824 marek.hors
			<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 19249 dominika.t
			<groupId>org.apache.oozie</groupId>
50
			<artifactId>oozie-core</artifactId>
51 19713 marek.hors
			<version>${iis.oozie.version}</version>
52 19824 marek.hors
			<scope>test</scope>
53
		</dependency>
54 23887 marek.hors
		<!-- 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 19824 marek.hors
		<!-- 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 19249 dominika.t
			<type>test-jar</type>
67
			<scope>test</scope>
68
		</dependency>
69
		<dependency>
70
			<groupId>org.apache.hadoop</groupId>
71
			<artifactId>hadoop-hdfs</artifactId>
72 19713 marek.hors
			<version>${iis.hadoop.hdfs.version}</version>
73 19249 dominika.t
			<type>test-jar</type>
74
			<scope>test</scope>
75
		</dependency>
76
		<dependency>
77
			<groupId>org.apache.hadoop</groupId>
78
			<artifactId>hadoop-test</artifactId>
79 19713 marek.hors
			<version>${iis.hadoop.test.version}</version>
80 19249 dominika.t
			<scope>test</scope>
81
		</dependency>
82
		<dependency>
83
			<groupId>org.apache.hadoop</groupId>
84
			<artifactId>hadoop-common</artifactId>
85 19713 marek.hors
			<version>${iis.hadoop.common.version}</version>
86 19249 dominika.t
			<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 19713 marek.hors
			<version>${iis.pig.version}</version>
95 19249 dominika.t
		</dependency>
96 20518 marek.hors
		<dependency>
97
			<groupId>org.antlr</groupId>
98
			<artifactId>antlr-runtime</artifactId>
99
			<version>3.4</version>
100
		</dependency>
101 19249 dominika.t
	    <dependency>
102
			<groupId>eu.dnetlib</groupId>
103
			<artifactId>icm-iis-3rdparty-pig-avrostorage</artifactId>
104 26526 marek.hors
			<version>1.0.0-SNAPSHOT</version>
105 19249 dominika.t
			<type>jar</type>
106
		</dependency>
107 20518 marek.hors
108
109 19249 dominika.t
		<!-- 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 17424 marek.hors
	</dependencies>
118
	<build>
119
		<plugins>
120 19249 dominika.t
            <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 17424 marek.hors
		</plugins>
129
	</build>
130
	<repositories>
131 19249 dominika.t
        <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 17424 marek.hors
	</repositories>
159
</project>