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
	<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-SNAPSHOT</version>
28
		</dependency>
29
		<dependency>
30
			<groupId>eu.dnetlib</groupId>
31
			<artifactId>icm-iis-schemas</artifactId>
32
			<version>1.0.0-SNAPSHOT</version>
33
		</dependency>
34
		<dependency>
35
			<groupId>eu.dnetlib</groupId>
36
			<artifactId>icm-iis-transformers</artifactId>
37
			<version>1.0.0-SNAPSHOT</version>
38
		</dependency>
39
		
40
		<dependency>
41
			<groupId>org.apache.hadoop</groupId>
42
			<artifactId>hadoop-hdfs</artifactId>
43
			<version>${iis.hadoop.hdfs.version}</version>
44
			<scope>provided</scope>
45
		</dependency>
46
		<dependency>
47
			<groupId>org.apache.oozie</groupId>
48
			<artifactId>oozie-core</artifactId>
49
			<version>${iis.oozie.version}</version>
50
		</dependency>
51
				<dependency>
52
			<groupId>org.apache.hadoop</groupId>
53
			<artifactId>hadoop-common</artifactId>
54
			<version>${iis.hadoop.common.version}</version>
55
			<scope>provided</scope>
56
		</dependency>
57
		<!-- Needed by our Hadoop Streaming workflow node {-->
58
		<dependency>
59
			<groupId>eu.dnetlib</groupId>
60
			<artifactId>icm-iis-3rdparty-avro-json</artifactId>
61
			<version>1.0-SNAPSHOT</version>
62
		</dependency>
63
		<dependency>
64
			<groupId>org.apache.hadoop</groupId>
65
			<artifactId>hadoop-streaming</artifactId>
66
			<version>${iis.hadoop.streaming.version}</version>
67
			<exclusions>
68
				<exclusion>
69
					<groupId>org.apache.hadoop</groupId>
70
            		<artifactId>hadoop-core</artifactId>
71
				</exclusion>
72
			</exclusions>
73
		</dependency>
74
		<!-- Needed by our Hadoop Streaming workflow node }-->
75
		<!-- Needed by Oozie tests { -->
76
		<dependency>
77
			<groupId>org.apache.oozie</groupId>
78
			<artifactId>oozie-core</artifactId>
79
			<version>${iis.oozie.version}</version>
80
			<type>test-jar</type>
81
			<scope>test</scope>
82
		</dependency>
83
		<dependency>
84
			<groupId>org.apache.hadoop</groupId>
85
			<artifactId>hadoop-hdfs</artifactId>
86
			<version>${iis.hadoop.hdfs.version}</version>
87
			<type>test-jar</type>
88
			<scope>test</scope>
89
		</dependency>
90
		<dependency>
91
			<groupId>org.apache.hadoop</groupId>
92
			<artifactId>hadoop-test</artifactId>
93
			<version>${iis.hadoop.test.version}</version>
94
			<scope>test</scope>
95
		</dependency>
96
		<dependency>
97
			<groupId>org.apache.hadoop</groupId>
98
			<artifactId>hadoop-common</artifactId>
99
			<version>${iis.hadoop.common.version}</version>
100
			<type>test-jar</type>
101
			<scope>test</scope>
102
		</dependency>
103
		<!-- Needed by Oozie tests } -->
104
		<dependency>
105
			<groupId>eu.dnetlib</groupId>
106
			<artifactId>uoa-iis-3rdparty-madis</artifactId>
107
			<version>1.0.0-SNAPSHOT</version>
108
		</dependency>
109
		<dependency>
110
			<groupId>junit</groupId>
111
			<artifactId>junit</artifactId>
112
			<version>4.10</version>
113
			<scope>test</scope>
114
		</dependency>
115
	</dependencies>
116
	<build>
117
		<plugins>
118
		</plugins>
119
		<pluginManagement>
120
		</pluginManagement>
121
	</build>
122
</project>
    (1-1/1)