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-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-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
		<!-- hive related -->
69
		<dependency>
70
            <groupId>org.apache.hive</groupId>
71
            <artifactId>hive-exec</artifactId>
72
            <version>${iis.hive.version}</version>
73
        </dependency>
74
        <dependency>
75
            <groupId>org.apache.hive</groupId>
76
            <artifactId>hive-cli</artifactId>
77
            <version>${iis.hive.version}</version>
78
        </dependency>
79
        <dependency>
80
            <groupId>org.apache.hive</groupId>
81
            <artifactId>hive-builtins</artifactId>
82
            <version>${iis.hive.version}</version>
83
        </dependency>
84
		<!-- Needed by our Hadoop Streaming workflow node }-->
85
		<!-- Needed by Oozie tests { -->
86
		<dependency>
87
			<groupId>org.apache.oozie</groupId>
88
			<artifactId>oozie-core</artifactId>
89
			<version>${iis.oozie.version}</version>
90
			<type>test-jar</type>
91
			<scope>test</scope>
92
		</dependency>
93
		<dependency>
94
			<groupId>org.apache.hadoop</groupId>
95
			<artifactId>hadoop-hdfs</artifactId>
96
			<version>${iis.hadoop.hdfs.version}</version>
97
			<type>test-jar</type>
98
			<scope>test</scope>
99
		</dependency>
100
		<dependency>
101
			<groupId>org.apache.hadoop</groupId>
102
			<artifactId>hadoop-test</artifactId>
103
			<version>${iis.hadoop.test.version}</version>
104
			<scope>test</scope>
105
		</dependency>
106
		<dependency>
107
			<groupId>org.apache.hadoop</groupId>
108
			<artifactId>hadoop-common</artifactId>
109
			<version>${iis.hadoop.common.version}</version>
110
			<type>test-jar</type>
111
			<scope>test</scope>
112
		</dependency>
113
		<!-- Needed by Oozie tests } -->
114
		<dependency>
115
			<groupId>eu.dnetlib</groupId>
116
			<artifactId>uoa-iis-3rdparty-madis</artifactId>
117
			<version>[1.0.0,2.0.0)</version>
118
		</dependency>
119
		<dependency>
120
			<groupId>junit</groupId>
121
			<artifactId>junit</artifactId>
122
			<version>4.10</version>
123
			<scope>test</scope>
124
		</dependency>
125
	</dependencies>
126
	<build>
127
		<plugins>
128
		</plugins>
129
		<pluginManagement>
130
		</pluginManagement>
131
	</build>
132
</project>
(2-2/2)