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