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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
	<parent>
4
    		<groupId>eu.dnetlib</groupId>
5
	        <artifactId>dnet-hadoop-parent</artifactId>
6
            <version>1.0.0</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<artifactId>icm-iis-common</artifactId>
10
	<packaging>jar</packaging>
11
	<version>1.0.0</version>
12

    
13
	<scm>
14
	  <developerConnection>
15
	    scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-common/tags/icm-iis-common-1.0.0
16
	  </developerConnection>
17
	</scm>
18
	
19
	<properties>
20
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21
	</properties>
22
	<dependencies>
23
		<dependency>
24
			<groupId>eu.dnetlib</groupId>
25
			<artifactId>icm-iis-core</artifactId>
26
			<version>1.0.0</version>
27
		</dependency>
28
		<dependency>
29
			<groupId>eu.dnetlib</groupId>
30
			<artifactId>dnet-openaire-data-protos</artifactId>
31
			<version>3.0.0</version>
32
		</dependency>
33
		<dependency>
34
			<groupId>org.apache.oozie</groupId>
35
			<artifactId>oozie-core</artifactId>
36
			<version>${iis.oozie.version}</version>
37
			<scope>provided</scope>
38
		</dependency>
39
        <dependency>
40
            <groupId>org.apache.hadoop</groupId>
41
            <artifactId>hadoop-core</artifactId>
42
            <version>${iis.hadoop.core.version}</version>
43
            <scope>provided</scope>
44
        </dependency>
45
        <dependency>
46
            <groupId>org.apache.hadoop</groupId>
47
            <artifactId>hadoop-common</artifactId>
48
            <version>${iis.hadoop.common.version}</version>
49
            <scope>provided</scope>
50
        </dependency>
51
        <dependency>
52
            <groupId>org.apache.avro</groupId>
53
            <artifactId>avro</artifactId>
54
            <version>${iis.avro.version}</version>
55
        </dependency>
56
        <dependency>
57
            <groupId>org.apache.avro</groupId>
58
            <artifactId>avro-mapred</artifactId>
59
            <version>${iis.avro.version}</version>
60
            <classifier>hadoop2</classifier>
61
        </dependency>
62
        <dependency>
63
        	<!-- required by caching mechanism -->
64
            <groupId>com.google.code.gson</groupId>
65
            <artifactId>gson</artifactId>
66
            <version>${google.gson.version}</version>
67
        </dependency>
68
        <dependency>
69
        	<!-- required by caching mechanism for setting chmod -->
70
            <groupId>org.springframework</groupId>
71
            <artifactId>spring-beans</artifactId>
72
            <version>${spring.version}</version>
73
        </dependency>
74
    	<dependency>
75
			<groupId>com.thoughtworks.xstream</groupId>
76
			<artifactId>xstream</artifactId>
77
			<version>1.4.7</version>
78
		</dependency>
79
	</dependencies>
80
	<build>
81
	</build>
82
	<repositories>
83
		<repository>
84
			<id>cloudera</id>
85
			<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
86
			<releases>
87
				<enabled>true</enabled>
88
			</releases>
89
			<snapshots>
90
				<enabled>false</enabled>
91
			</snapshots>
92
		</repository>
93
  </repositories>
94
</project>
(3-3/3)