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>icm-iis-parent-container</artifactId>
7
        <version>1.0.0-SNAPSHOT</version>
8
    </parent>
9
    <modelVersion>4.0.0</modelVersion>
10
    <artifactId>icm-iis-statistics</artifactId>
11
    <packaging>jar</packaging>
12
    <version>1.0.0-SNAPSHOT</version>
13
    
14
    <properties>
15
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16
    </properties>
17
    <dependencies>
18
        <dependency>
19
            <groupId>junit</groupId>
20
            <artifactId>junit</artifactId>
21
            <version>4.10</version>
22
            <scope>test</scope>
23
        </dependency>    
24
            
25
        <dependency>
26
			<groupId>eu.dnetlib</groupId>
27
			<artifactId>icm-iis-core</artifactId>
28
			<version>1.0.0-SNAPSHOT</version>
29
		</dependency>
30
		<dependency>
31
			<groupId>eu.dnetlib</groupId>
32
			<artifactId>icm-iis-core</artifactId>
33
			<version>1.0.0-SNAPSHOT</version>
34
			<type>test-jar</type>
35
			<scope>test</scope>
36
		</dependency>
37
        <dependency>
38
            <groupId>eu.dnetlib</groupId>
39
            <artifactId>icm-iis-schemas</artifactId>
40
            <version>1.0.0-SNAPSHOT</version>
41
        </dependency>
42
        <!-- required after introducing 'provided' scope for hadoop libs -->
43
        <dependency>
44
			<groupId>org.apache.hadoop</groupId>
45
			<artifactId>hadoop-common</artifactId>
46
			<version>${iis.hadoop.common.version}</version>
47
			<scope>provided</scope>
48
		</dependency>
49
		<!-- Needed by Oozie tests { -->
50
		<!-- required after introducing 'provided' scope for hadoop dependencies -->
51
		<dependency>
52
			<groupId>org.apache.oozie</groupId>
53
			<artifactId>oozie-core</artifactId>
54
			<version>${iis.oozie.version}</version>
55
			<scope>test</scope>
56
		</dependency>
57
		<dependency>
58
			<groupId>org.apache.hadoop</groupId>
59
			<artifactId>hadoop-hdfs</artifactId>
60
			<version>${iis.hadoop.hdfs.version}</version>
61
			<scope>test</scope>
62
		</dependency>
63
		<!-- end of required after introducing 'provided' scope for hadoop dependencies -->
64
		<dependency>
65
			<groupId>org.apache.oozie</groupId>
66
			<artifactId>oozie-core</artifactId>
67
			<version>${iis.oozie.version}</version>
68
			<type>test-jar</type>
69
			<scope>test</scope>
70
		</dependency>
71
		<dependency>
72
			<groupId>org.apache.hadoop</groupId>
73
			<artifactId>hadoop-hdfs</artifactId>
74
			<version>${iis.hadoop.hdfs.version}</version>
75
			<type>test-jar</type>
76
			<scope>test</scope>
77
		</dependency>
78
		<dependency>
79
			<groupId>org.apache.hadoop</groupId>
80
			<artifactId>hadoop-test</artifactId>
81
			<version>${iis.hadoop.test.version}</version>
82
			<scope>test</scope>
83
		</dependency>
84
		<dependency>
85
			<groupId>org.apache.hadoop</groupId>
86
			<artifactId>hadoop-common</artifactId>
87
			<version>${iis.hadoop.common.version}</version>
88
			<type>test-jar</type>
89
			<scope>test</scope>
90
        </dependency>
91

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