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
	</dependencies>
70
	<build>
71
	</build>
72
	<repositories>
73
		<repository>
74
			<id>cloudera</id>
75
			<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
76
			<releases>
77
				<enabled>true</enabled>
78
			</releases>
79
			<snapshots>
80
				<enabled>false</enabled>
81
			</snapshots>
82
		</repository>
83
    	<!-- Sandro removed this repository from parent pom, need to define here until moving artifacts from dnet-snapshot to dnet-spring-snapshot repository -->
84
    	<!-- 
85
		<repository>
86
			<id>dnet-snapshots</id>
87
			<name>dnet-snapshots</name>
88
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-snapshots</url>
89
			<layout>default</layout>
90
			<snapshots>
91
				<enabled>true</enabled>
92
			</snapshots>
93
		</repository>
94
		-->
95
  </repositories>
96
</project>
(3-3/3)