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>icm-iis-parent-container</artifactId>
6
        <version>1.0.1-SNAPSHOT</version>
7
    </parent>
8
    <modelVersion>4.0.0</modelVersion>
9
    <artifactId>icm-iis-statistics</artifactId>
10
    <packaging>jar</packaging>
11
    <version>1.0.1-SNAPSHOT</version>
12

    
13
    <scm>
14
      <developerConnection>
15
        scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-statistics/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>junit</groupId>
25
            <artifactId>junit</artifactId>
26
            <version>4.10</version>
27
            <scope>test</scope>
28
        </dependency>    
29
            
30
        <dependency>
31
			<groupId>eu.dnetlib</groupId>
32
			<artifactId>icm-iis-core</artifactId>
33
			<version>[1.0.0,2.0.0)</version>
34
		</dependency>
35
		<dependency>
36
			<groupId>eu.dnetlib</groupId>
37
			<artifactId>icm-iis-core</artifactId>
38
			<version>[1.0.0,2.0.0)</version>
39
			<type>test-jar</type>
40
			<scope>test</scope>
41
		</dependency>
42
        <dependency>
43
            <groupId>eu.dnetlib</groupId>
44
            <artifactId>icm-iis-schemas</artifactId>
45
            <version>[1.0.0,2.0.0)</version>
46
        </dependency>
47
        <!-- required after introducing 'provided' scope for hadoop libs -->
48
        <dependency>
49
			<groupId>org.apache.hadoop</groupId>
50
			<artifactId>hadoop-common</artifactId>
51
			<version>${iis.hadoop.common.version}</version>
52
			<scope>provided</scope>
53
		</dependency>
54
		<!-- Needed by Oozie tests { -->
55
		<!-- required after introducing 'provided' scope for hadoop dependencies -->
56
		<dependency>
57
			<groupId>org.apache.oozie</groupId>
58
			<artifactId>oozie-core</artifactId>
59
			<version>${iis.oozie.version}</version>
60
			<scope>test</scope>
61
		</dependency>
62
		<dependency>
63
			<groupId>org.apache.hadoop</groupId>
64
			<artifactId>hadoop-hdfs</artifactId>
65
			<version>${iis.hadoop.hdfs.version}</version>
66
			<scope>test</scope>
67
		</dependency>
68
		<!-- end of required after introducing 'provided' scope for hadoop dependencies -->
69
		<dependency>
70
			<groupId>org.apache.oozie</groupId>
71
			<artifactId>oozie-core</artifactId>
72
			<version>${iis.oozie.version}</version>
73
			<type>test-jar</type>
74
			<scope>test</scope>
75
		</dependency>
76
		<dependency>
77
			<groupId>org.apache.hadoop</groupId>
78
			<artifactId>hadoop-hdfs</artifactId>
79
			<version>${iis.hadoop.hdfs.version}</version>
80
			<type>test-jar</type>
81
			<scope>test</scope>
82
		</dependency>
83
		<dependency>
84
			<groupId>org.apache.hadoop</groupId>
85
			<artifactId>hadoop-test</artifactId>
86
			<version>${iis.hadoop.test.version}</version>
87
			<scope>test</scope>
88
		</dependency>
89
		<dependency>
90
			<groupId>org.apache.hadoop</groupId>
91
			<artifactId>hadoop-common</artifactId>
92
			<version>${iis.hadoop.common.version}</version>
93
			<type>test-jar</type>
94
			<scope>test</scope>
95
        </dependency>
96

    
97
        <dependency>
98
            <groupId>org.apache.hive</groupId>
99
            <artifactId>hive-exec</artifactId>
100
            <version>${iis.hive.version}</version>
101
        </dependency>
102
        <dependency>
103
            <groupId>org.apache.hive</groupId>
104
            <artifactId>hive-cli</artifactId>
105
            <version>${iis.hive.version}</version>
106
        </dependency>
107
        <dependency>
108
            <groupId>org.apache.hive</groupId>
109
            <artifactId>hive-builtins</artifactId>
110
            <version>${iis.hive.version}</version>
111
        </dependency>
112
    </dependencies>
113
    <repositories>
114
	    <!-- This repository contains our patched 
115
	    version of "avro" and "avro-mapred" modules (see the dependencies section)
116
	    This entry might be removed when the patch to these modules becomes 
117
	    a part of the official Avro release.-->
118
	    <repository>
119
			<id>dnet-deps</id>
120
			<name>dnet dependencies</name>
121
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
122
			<releases>
123
				<enabled>true</enabled>
124
			</releases>
125
			<snapshots>
126
				<enabled>false</enabled>
127
			</snapshots>
128
			<layout>default</layout>
129
		</repository>
130
    </repositories>
131
</project>
(2-2/2)