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-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-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>hadoop-common</artifactId>
57
			<version>${iis.hadoop.common.version}</version>
58
			<scope>provided</scope>
59
		</dependency>
60
		<!-- Needed by our Hadoop Streaming workflow node {-->
61
		<dependency>
62
			<groupId>eu.dnetlib</groupId>
63
			<artifactId>icm-iis-3rdparty-avro-json</artifactId>
64
			<version>[1.0,2.0)</version>
65
		</dependency>
66
		<dependency>
67
			<groupId>org.apache.hadoop</groupId>
68
			<artifactId>hadoop-streaming</artifactId>
69
			<version>${iis.hadoop.streaming.version}</version>
70
			<exclusions>
71
				<exclusion>
72
					<groupId>org.apache.hadoop</groupId>
73
            		<artifactId>hadoop-core</artifactId>
74
				</exclusion>
75
			</exclusions>
76
		</dependency>
77
		<!-- Needed by our Hadoop Streaming workflow node }-->
78
		<!-- Needed by Oozie tests { -->
79
		<dependency>
80
			<groupId>org.apache.oozie</groupId>
81
			<artifactId>oozie-core</artifactId>
82
			<version>${iis.oozie.version}</version>
83
			<type>test-jar</type>
84
			<scope>test</scope>
85
		</dependency>
86
        <dependency>
87
            <groupId>org.apache.oozie</groupId>
88
            <artifactId>oozie-sharelib-streaming</artifactId>
89
            <version>${iis.oozie.version}</version>
90
            <type>jar</type>
91
        </dependency>
92
		<dependency>
93
			<groupId>org.apache.hadoop</groupId>
94
			<artifactId>hadoop-hdfs</artifactId>
95
			<version>${iis.hadoop.hdfs.version}</version>
96
			<type>test-jar</type>
97
			<scope>test</scope>
98
		</dependency>
99
		<dependency>
100
			<groupId>org.apache.hadoop</groupId>
101
			<artifactId>hadoop-test</artifactId>
102
			<version>${iis.hadoop.test.version}</version>
103
			<scope>test</scope>
104
		</dependency>
105
		<dependency>
106
			<groupId>org.apache.hadoop</groupId>
107
			<artifactId>hadoop-common</artifactId>
108
			<version>${iis.hadoop.common.version}</version>
109
			<type>test-jar</type>
110
			<scope>test</scope>
111
		</dependency>
112
		<!-- Needed by Oozie tests } -->
113
		<dependency>
114
			<groupId>eu.dnetlib</groupId>
115
			<artifactId>uoa-iis-3rdparty-madis</artifactId>
116
			<version>[1.0.0,2.0.0)</version>
117
        </dependency>
118
	</dependencies>
119
	<build>
120
		<plugins>
121
			<!-- This plugin makes the Maven->Update Project Configuration not forget 
122
				about the "target/generated-sources/java" source path -->
123
			<plugin>
124
				<groupId>org.codehaus.mojo</groupId>
125
				<artifactId>build-helper-maven-plugin</artifactId>
126
				<executions>
127
					<execution>
128
						<id>add-source</id>
129
						<phase>generate-sources</phase>
130
						<goals>
131
							<goal>add-source</goal>
132
						</goals>
133
						<configuration>
134
							<sources>
135
								<source>${project.build.directory}/generated-sources/java/</source>
136
							</sources>
137
						</configuration>
138
					</execution>
139
				</executions>
140
			</plugin>
141
		</plugins>
142
		<pluginManagement>
143
		<plugins>
144
			<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
145
			<plugin>
146
				<groupId>org.eclipse.m2e</groupId>
147
				<artifactId>lifecycle-mapping</artifactId>
148
				<version>1.0.0</version>
149
				<configuration>
150
					<lifecycleMappingMetadata>
151
						<pluginExecutions>
152
							<pluginExecution>
153
								<pluginExecutionFilter>
154
									<groupId>org.codehaus.mojo</groupId>
155
									<artifactId>
156
										build-helper-maven-plugin
157
									</artifactId>
158
									<versionRange>[1.8,)</versionRange>
159
									<goals>
160
										<goal>add-source</goal>
161
									</goals>
162
								</pluginExecutionFilter>
163
								<action>
164
									<ignore />
165
								</action>
166
							</pluginExecution>
167
						</pluginExecutions>
168
					</lifecycleMappingMetadata>
169
				</configuration>
170
			</plugin>
171
		</plugins>
172
		</pluginManagement>
173
	</build>
174
</project>
(2-2/2)