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>dnet45-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.3-SNAPSHOT</version>
12

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