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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
	<parent>
4
    		<groupId>eu.dnetlib</groupId>
5
	        <artifactId>icm-iis-parent-container</artifactId>
6
            <version>1.0.1-CDH-5.3.0-SNAPSHOT</version>
7
	</parent>
8
	<modelVersion>4.0.0</modelVersion>
9
	<artifactId>uoa-iis-documentsclassification</artifactId>
10
	<packaging>jar</packaging>
11
	<version>1.0.1-CDH-5.3.0-SNAPSHOT</version>
12

    
13
	<scm>
14
	  <developerConnection>
15
	    scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-iis-documentsclassification/trunk
16
	  </developerConnection>
17
	</scm>
18
	
19
	<properties>
20
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21
	</properties>
22
	<dependencies>
23
<dependency>
24
			<groupId>eu.dnetlib</groupId>
25
			<artifactId>icm-iis-core</artifactId>
26
			<version>[1.0.0,2.0.0)</version>
27
		</dependency>
28
		<dependency>
29
			<groupId>eu.dnetlib</groupId>
30
			<artifactId>icm-iis-core</artifactId>
31
			<version>[1.0.0,2.0.0)</version>
32
			<type>test-jar</type>
33
			<scope>test</scope>
34
		</dependency>
35
		<dependency>
36
			<groupId>eu.dnetlib</groupId>
37
			<artifactId>icm-iis-schemas</artifactId>
38
			<version>[1.0.0,2.0.0)</version>
39
		</dependency>
40
		
41
		<!-- required after introducing 'provided' scope for hadoop libs -->
42
		<dependency>
43
			<groupId>org.apache.hadoop</groupId>
44
			<artifactId>hadoop-hdfs</artifactId>
45
			<version>${iis.hadoop.hdfs.version}</version>
46
			<scope>provided</scope>
47
		</dependency>
48
		<dependency>
49
			<groupId>org.apache.oozie</groupId>
50
			<artifactId>oozie-core</artifactId>
51
			<version>${iis.oozie.version}</version>
52
			
53
		</dependency>
54
		<dependency>
55
			<groupId>org.apache.hadoop</groupId>
56
			<artifactId>${iis.hadoop.common.artifactid}</artifactId>
57
			<version>${iis.hadoop.common.version}</version>
58
		</dependency>
59
		<!-- Needed by our Hadoop Streaming workflow node {-->
60
		<dependency>
61
			<groupId>eu.dnetlib</groupId>
62
			<artifactId>icm-iis-3rdparty-avro-json</artifactId>
63
			<version>[1.0,2.0)</version>
64
		</dependency>
65
		<dependency>
66
			<groupId>org.apache.hadoop</groupId>
67
			<artifactId>hadoop-streaming</artifactId>
68
			<version>${iis.hadoop.streaming.version}</version>
69
			<exclusions>
70
				<exclusion>
71
					<groupId>org.apache.hadoop</groupId>
72
            		<artifactId>hadoop-core</artifactId>
73
				</exclusion>
74
			</exclusions>
75
		</dependency>
76
		<!-- Needed by our Hadoop Streaming workflow node }-->
77
		<!-- Needed by Oozie tests { -->
78
		<dependency>
79
			<groupId>org.apache.oozie</groupId>
80
			<artifactId>oozie-core</artifactId>
81
			<version>${iis.oozie.version}</version>
82
			<type>test-jar</type>
83
			<scope>test</scope>
84
		</dependency>
85
		<dependency>
86
			<groupId>org.apache.hadoop</groupId>
87
			<artifactId>hadoop-hdfs</artifactId>
88
			<version>${iis.hadoop.hdfs.version}</version>
89
			<type>test-jar</type>
90
			<scope>test</scope>
91
		</dependency>
92
		<dependency>
93
			<groupId>org.apache.hadoop</groupId>
94
			<artifactId>hadoop-test</artifactId>
95
			<version>${iis.hadoop.test.version}</version>
96
			<scope>test</scope>
97
		</dependency>
98
		<dependency>
99
			<groupId>org.apache.hadoop</groupId>
100
			<artifactId>${iis.hadoop.common.artifactid}</artifactId>
101
			<version>${iis.hadoop.common.version}</version>
102
			<type>test-jar</type>
103
			<scope>test</scope>
104
		</dependency>
105
		<!-- Needed by Oozie tests } -->
106
		<dependency>
107
			<groupId>eu.dnetlib</groupId>
108
			<artifactId>uoa-iis-3rdparty-madis</artifactId>
109
			<version>[1.0.0,2.0.0)</version>
110
        </dependency>
111
	</dependencies>
112
	<build>
113
		<plugins>
114
			<!-- This plugin makes the Maven->Update Project Configuration not forget 
115
				about the "target/generated-sources/java" source path -->
116
			<plugin>
117
				<groupId>org.codehaus.mojo</groupId>
118
				<artifactId>build-helper-maven-plugin</artifactId>
119
				<executions>
120
					<execution>
121
						<id>add-source</id>
122
						<phase>generate-sources</phase>
123
						<goals>
124
							<goal>add-source</goal>
125
						</goals>
126
						<configuration>
127
							<sources>
128
								<source>${project.build.directory}/generated-sources/java/</source>
129
							</sources>
130
						</configuration>
131
					</execution>
132
				</executions>
133
			</plugin>
134
		</plugins>
135
		<pluginManagement>
136
		<plugins>
137
			<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
138
			<plugin>
139
				<groupId>org.eclipse.m2e</groupId>
140
				<artifactId>lifecycle-mapping</artifactId>
141
				<version>1.0.0</version>
142
				<configuration>
143
					<lifecycleMappingMetadata>
144
						<pluginExecutions>
145
							<pluginExecution>
146
								<pluginExecutionFilter>
147
									<groupId>org.codehaus.mojo</groupId>
148
									<artifactId>
149
										build-helper-maven-plugin
150
									</artifactId>
151
									<versionRange>[1.8,)</versionRange>
152
									<goals>
153
										<goal>add-source</goal>
154
									</goals>
155
								</pluginExecutionFilter>
156
								<action>
157
									<ignore />
158
								</action>
159
							</pluginExecution>
160
						</pluginExecutions>
161
					</lifecycleMappingMetadata>
162
				</configuration>
163
			</plugin>
164
		</plugins>
165
		</pluginManagement>
166
	</build>
167
</project>
(2-2/2)