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>dnet-hadoop-parent</artifactId>
7
            <version>1.0.0-SNAPSHOT</version>
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<artifactId>icm-iis-common</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>dnet-openaire-data-protos</artifactId>
26
			<version>3.0.0-SNAPSHOT</version>
27
		</dependency>
28
		<dependency>
29
			<groupId>org.apache.oozie</groupId>
30
			<artifactId>oozie-core</artifactId>
31
			<version>${iis.oozie.version}</version>
32
			<scope>provided</scope>
33
		</dependency>
34
        <dependency>
35
            <groupId>org.apache.hadoop</groupId>
36
            <artifactId>hadoop-core</artifactId>
37
            <version>${iis.hadoop.core.version}</version>
38
            <scope>provided</scope>
39
        </dependency>
40
        <dependency>
41
            <groupId>org.apache.hadoop</groupId>
42
            <artifactId>hadoop-common</artifactId>
43
            <version>${iis.hadoop.common.version}</version>
44
            <scope>provided</scope>
45
        </dependency>
46
        <dependency>
47
            <groupId>org.apache.avro</groupId>
48
            <artifactId>avro</artifactId>
49
            <version>${iis.avro.version}</version>
50
        </dependency>
51
        <dependency>
52
            <groupId>org.apache.avro</groupId>
53
            <artifactId>avro-mapred</artifactId>
54
            <version>${iis.avro.version}</version>
55
            <classifier>hadoop2</classifier>
56
        </dependency>
57
        <dependency>
58
        	<!-- required by caching mechanism -->
59
            <groupId>com.google.code.gson</groupId>
60
            <artifactId>gson</artifactId>
61
            <version>${google.gson.version}</version>
62
        </dependency>
63
        <dependency>
64
        	<!-- required by caching mechanism for setting chmod -->
65
            <groupId>org.springframework</groupId>
66
            <artifactId>spring-beans</artifactId>
67
            <version>${spring.version}</version>
68
        </dependency>
69
    	<dependency>
70
			<groupId>com.thoughtworks.xstream</groupId>
71
			<artifactId>xstream</artifactId>
72
			<version>1.4.7</version>
73
		</dependency>
74
	</dependencies>
75
	<build>
76
	</build>
77
	<repositories>
78
		<repository>
79
			<id>cloudera</id>
80
			<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
81
			<releases>
82
				<enabled>true</enabled>
83
			</releases>
84
			<snapshots>
85
				<enabled>false</enabled>
86
			</snapshots>
87
		</repository>
88
    	<!-- Sandro removed this repository from parent pom, need to define here until moving artifacts from dnet-snapshot to dnet-spring-snapshot repository -->
89
    	<!-- 
90
		<repository>
91
			<id>dnet-snapshots</id>
92
			<name>dnet-snapshots</name>
93
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-snapshots</url>
94
			<layout>default</layout>
95
			<snapshots>
96
				<enabled>true</enabled>
97
			</snapshots>
98
		</repository>
99
		-->
100
  </repositories>
101
</project>
(3-3/3)