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>uoa-iis-websiteusage</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>eu.dnetlib</groupId>
20
			<artifactId>icm-iis-core</artifactId>
21
			<version>1.0.0-SNAPSHOT</version>
22
		</dependency>
23
		<dependency>
24
			<groupId>eu.dnetlib</groupId>
25
			<artifactId>icm-iis-schemas</artifactId>
26
			<version>1.0.0-SNAPSHOT</version>
27
		</dependency>
28
		<dependency>
29
			<groupId>eu.dnetlib</groupId>
30
			<artifactId>icm-iis-transformers</artifactId>
31
			<version>1.0.0-SNAPSHOT</version>
32
		</dependency>
33
		
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-SNAPSHOT</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
		<!-- Needed by our Hadoop Streaming workflow node }-->
69
		<!-- Needed by Oozie tests { -->
70
		<dependency>
71
			<groupId>org.apache.oozie</groupId>
72
			<artifactId>oozie-core</artifactId>
73
			<version>${iis.oozie.version}</version>
74
			<type>test-jar</type>
75
			<scope>test</scope>
76
		</dependency>
77
		<dependency>
78
			<groupId>org.apache.hadoop</groupId>
79
			<artifactId>hadoop-hdfs</artifactId>
80
			<version>${iis.hadoop.hdfs.version}</version>
81
			<type>test-jar</type>
82
			<scope>test</scope>
83
		</dependency>
84
		<dependency>
85
			<groupId>org.apache.hadoop</groupId>
86
			<artifactId>hadoop-test</artifactId>
87
			<version>${iis.hadoop.test.version}</version>
88
			<scope>test</scope>
89
		</dependency>
90
		<dependency>
91
			<groupId>org.apache.hadoop</groupId>
92
			<artifactId>hadoop-common</artifactId>
93
			<version>${iis.hadoop.common.version}</version>
94
			<type>test-jar</type>
95
			<scope>test</scope>
96
		</dependency>
97
		<!-- Needed by Oozie tests } -->
98
		<dependency>
99
			<groupId>eu.dnetlib</groupId>
100
			<artifactId>uoa-iis-3rdparty-madis</artifactId>
101
			<version>1.0.0-SNAPSHOT</version>
102
		</dependency>
103
		<dependency>
104
			<groupId>junit</groupId>
105
			<artifactId>junit</artifactId>
106
			<version>4.10</version>
107
			<scope>test</scope>
108
		</dependency>
109
	</dependencies>
110
	<build>
111
		<plugins>
112
		</plugins>
113
		<pluginManagement>
114
		</pluginManagement>
115
	</build>
116
	<repositories>
117
		<repository>
118
			<id>cloudera</id>
119
			<name>Cloudera Repository</name>
120
			<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
121
			<releases>
122
				<enabled>true</enabled>
123
			</releases>
124
			<snapshots>
125
				<enabled>false</enabled>
126
			</snapshots>
127
		</repository>
128
	</repositories>
129
</project>
    (1-1/1)