Project

General

Profile

1 17022 marek.hors
<?xml version="1.0" encoding="UTF-8"?>
2 33530 marek.hors
<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 17022 marek.hors
	<parent>
4 26481 marek.hors
    		<groupId>eu.dnetlib</groupId>
5
	        <artifactId>dnet-hadoop-parent</artifactId>
6 35708 marek.hors
            <version>1.0.0-SNAPSHOT</version>
7 17022 marek.hors
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<artifactId>icm-iis-common</artifactId>
10
	<packaging>jar</packaging>
11 33532 marek.hors
	<version>1.0.1-SNAPSHOT</version>
12 33409 marek.hors
13
	<scm>
14
	  <developerConnection>
15 33532 marek.hors
	    scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-common/trunk
16 33409 marek.hors
	  </developerConnection>
17
	</scm>
18 26481 marek.hors
19 17022 marek.hors
	<properties>
20
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21
	</properties>
22
	<dependencies>
23 17050 mateusz.ko
		<dependency>
24
			<groupId>eu.dnetlib</groupId>
25 23949 marek.hors
			<artifactId>icm-iis-core</artifactId>
26 34625 marek.hors
			<version>[1.0.0,2.0.0)</version>
27 23949 marek.hors
		</dependency>
28
		<dependency>
29 37346 marek.hors
            <groupId>eu.dnetlib</groupId>
30
            <artifactId>icm-iis-schemas</artifactId>
31
            <version>[1.0.0,2.0.0)</version>
32
        </dependency>
33
		<dependency>
34 23949 marek.hors
			<groupId>eu.dnetlib</groupId>
35 17050 mateusz.ko
			<artifactId>dnet-openaire-data-protos</artifactId>
36 34584 marek.hors
			<version>[3.0.0, 4.0.0)</version>
37 17050 mateusz.ko
		</dependency>
38 20318 marek.hors
		<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 22445 mateusz.fe
        <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 26515 marek.hors
            <version>${iis.avro.version}</version>
60 22445 mateusz.fe
        </dependency>
61
        <dependency>
62
            <groupId>org.apache.avro</groupId>
63
            <artifactId>avro-mapred</artifactId>
64 26515 marek.hors
            <version>${iis.avro.version}</version>
65 22445 mateusz.fe
            <classifier>hadoop2</classifier>
66
        </dependency>
67 23949 marek.hors
        <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 29070 marek.hors
        <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 29809 marek.hors
    	<dependency>
80
			<groupId>com.thoughtworks.xstream</groupId>
81
			<artifactId>xstream</artifactId>
82
			<version>1.4.7</version>
83
		</dependency>
84 17022 marek.hors
	</dependencies>
85
	<build>
86
	</build>
87
	<repositories>
88 26553 marek.hors
		<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 17022 marek.hors
</project>