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.1-CDH-5.3.0-SNAPSHOT</version>
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<artifactId>uoa-iis-websiteusage</artifactId>
11
	<packaging>jar</packaging>
12
	<version>1.0.0-CDH-5.3.0-SNAPSHOT</version>
13

    
14
	<scm>
15
	  <developerConnection>
16
	    scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-iis-websiteusage/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,2.0.0)</version>
28
		</dependency>
29
		<dependency>
30
			<groupId>eu.dnetlib</groupId>
31
			<artifactId>icm-iis-schemas</artifactId>
32
			<version>[1.0.0,2.0.0)</version>
33
		</dependency>
34
		<dependency>
35
			<groupId>org.apache.hadoop</groupId>
36
			<artifactId>hadoop-hdfs</artifactId>
37
			<version>${iis.hadoop.hdfs.version}</version>
38
			<scope>provided</scope>
39
		</dependency>
40
		<dependency>
41
			<groupId>org.apache.oozie</groupId>
42
			<artifactId>oozie-core</artifactId>
43
			<version>${iis.oozie.version}</version>
44
		</dependency>
45
				<dependency>
46
			<groupId>org.apache.hadoop</groupId>
47
			<artifactId>hadoop-common</artifactId>
48
			<version>${iis.hadoop.common.version}</version>
49
			<scope>provided</scope>
50
		</dependency>
51
		<!-- Needed by our Hadoop Streaming workflow node {-->
52
		<dependency>
53
			<groupId>eu.dnetlib</groupId>
54
			<artifactId>icm-iis-3rdparty-avro-json</artifactId>
55
			<version>[1.0,2.0)</version>
56
		</dependency>
57
		<dependency>
58
			<groupId>org.apache.hadoop</groupId>
59
			<artifactId>hadoop-streaming</artifactId>
60
			<version>${iis.hadoop.streaming.version}</version>
61
			<exclusions>
62
				<exclusion>
63
					<groupId>org.apache.hadoop</groupId>
64
            		<artifactId>hadoop-core</artifactId>
65
				</exclusion>
66
			</exclusions>
67
		</dependency>
68
		<dependency>
69
			<groupId>org.apache.oozie</groupId>
70
			<artifactId>oozie-sharelib-streaming</artifactId>
71
			<version>${iis.oozie.version}</version>
72
		</dependency>
73
		<!-- hive related -->
74
		<dependency>
75
            <groupId>org.apache.hive</groupId>
76
            <artifactId>hive-exec</artifactId>
77
            <version>${iis.hive.version}</version>
78
        </dependency>
79
        <dependency>
80
            <groupId>org.apache.hive</groupId>
81
            <artifactId>hive-cli</artifactId>
82
            <version>${iis.hive.version}</version>
83
        </dependency>
84
        <!-- not available in CDH5 
85
        <dependency>
86
            <groupId>org.apache.hive</groupId>
87
            <artifactId>hive-builtins</artifactId>
88
            <version>${iis.hive.version}</version>
89
        </dependency>
90
         -->
91
		<!-- Needed by our Hadoop Streaming workflow node }-->
92
		<!-- Needed by Oozie tests { -->
93
		<dependency>
94
			<groupId>org.apache.oozie</groupId>
95
			<artifactId>oozie-core</artifactId>
96
			<version>${iis.oozie.version}</version>
97
			<type>test-jar</type>
98
			<scope>test</scope>
99
		</dependency>
100
		<dependency>
101
			<groupId>org.apache.hadoop</groupId>
102
			<artifactId>hadoop-hdfs</artifactId>
103
			<version>${iis.hadoop.hdfs.version}</version>
104
			<type>test-jar</type>
105
			<scope>test</scope>
106
		</dependency>
107
		<dependency>
108
			<groupId>org.apache.hadoop</groupId>
109
			<artifactId>hadoop-test</artifactId>
110
			<version>${iis.hadoop.test.version}</version>
111
			<scope>test</scope>
112
		</dependency>
113
		<dependency>
114
			<groupId>org.apache.hadoop</groupId>
115
			<artifactId>hadoop-common</artifactId>
116
			<version>${iis.hadoop.common.version}</version>
117
			<type>test-jar</type>
118
			<scope>test</scope>
119
		</dependency>
120
		<!-- Needed by Oozie tests } -->
121
		<dependency>
122
			<groupId>eu.dnetlib</groupId>
123
			<artifactId>uoa-iis-3rdparty-madis</artifactId>
124
			<version>[1.0.0,2.0.0)</version>
125
		</dependency>
126
		<dependency>
127
			<groupId>junit</groupId>
128
			<artifactId>junit</artifactId>
129
			<version>4.10</version>
130
			<scope>test</scope>
131
		</dependency>
132
	</dependencies>
133
	<build>
134
		<plugins>
135
		</plugins>
136
		<pluginManagement>
137
		</pluginManagement>
138
	</build>
139
</project>
(2-2/2)