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-documentsclassification</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-documentsclassification/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-core</artifactId>
32
			<version>1.0.0-SNAPSHOT</version>
33
			<type>test-jar</type>
34
			<scope>test</scope>
35
		</dependency>
36
		<dependency>
37
			<groupId>eu.dnetlib</groupId>
38
			<artifactId>icm-iis-schemas</artifactId>
39
			<version>1.0.0-SNAPSHOT</version>
40
		</dependency>
41
		
42
		<!-- required after introducing 'provided' scope for hadoop libs -->
43
		<dependency>
44
			<groupId>org.apache.hadoop</groupId>
45
			<artifactId>hadoop-hdfs</artifactId>
46
			<version>${iis.hadoop.hdfs.version}</version>
47
			<scope>provided</scope>
48
		</dependency>
49
		<dependency>
50
			<groupId>org.apache.oozie</groupId>
51
			<artifactId>oozie-core</artifactId>
52
			<version>${iis.oozie.version}</version>
53
			
54
		</dependency>
55
				<dependency>
56
			<groupId>org.apache.hadoop</groupId>
57
			<artifactId>hadoop-common</artifactId>
58
			<version>${iis.hadoop.common.version}</version>
59
			<scope>provided</scope>
60
		</dependency>
61
		<!-- Needed by our Hadoop Streaming workflow node {-->
62
		<dependency>
63
			<groupId>eu.dnetlib</groupId>
64
			<artifactId>icm-iis-3rdparty-avro-json</artifactId>
65
			<version>1.0-SNAPSHOT</version>
66
		</dependency>
67
		<dependency>
68
			<groupId>org.apache.hadoop</groupId>
69
			<artifactId>hadoop-streaming</artifactId>
70
			<version>${iis.hadoop.streaming.version}</version>
71
			<exclusions>
72
				<exclusion>
73
					<groupId>org.apache.hadoop</groupId>
74
            		<artifactId>hadoop-core</artifactId>
75
				</exclusion>
76
			</exclusions>
77
		</dependency>
78
		<!-- Needed by our Hadoop Streaming workflow node }-->
79
		<!-- Needed by Oozie tests { -->
80
		<dependency>
81
			<groupId>org.apache.oozie</groupId>
82
			<artifactId>oozie-core</artifactId>
83
			<version>${iis.oozie.version}</version>
84
			<type>test-jar</type>
85
			<scope>test</scope>
86
		</dependency>
87
        <dependency>
88
            <groupId>org.apache.oozie</groupId>
89
            <artifactId>oozie-sharelib-streaming</artifactId>
90
            <version>${iis.oozie.version}</version>
91
            <type>jar</type>
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-SNAPSHOT</version>
118
        </dependency>
119
	</dependencies>
120
	<build>
121
		<plugins>
122
			<!-- This plugin makes the Maven->Update Project Configuration not forget 
123
				about the "target/generated-sources/java" source path -->
124
			<plugin>
125
				<groupId>org.codehaus.mojo</groupId>
126
				<artifactId>build-helper-maven-plugin</artifactId>
127
				<executions>
128
					<execution>
129
						<id>add-source</id>
130
						<phase>generate-sources</phase>
131
						<goals>
132
							<goal>add-source</goal>
133
						</goals>
134
						<configuration>
135
							<sources>
136
								<source>${project.build.directory}/generated-sources/java/</source>
137
							</sources>
138
						</configuration>
139
					</execution>
140
				</executions>
141
			</plugin>
142
		</plugins>
143
		<pluginManagement>
144
		<plugins>
145
			<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
146
			<plugin>
147
				<groupId>org.eclipse.m2e</groupId>
148
				<artifactId>lifecycle-mapping</artifactId>
149
				<version>1.0.0</version>
150
				<configuration>
151
					<lifecycleMappingMetadata>
152
						<pluginExecutions>
153
							<pluginExecution>
154
								<pluginExecutionFilter>
155
									<groupId>org.codehaus.mojo</groupId>
156
									<artifactId>
157
										build-helper-maven-plugin
158
									</artifactId>
159
									<versionRange>[1.8,)</versionRange>
160
									<goals>
161
										<goal>add-source</goal>
162
									</goals>
163
								</pluginExecutionFilter>
164
								<action>
165
									<ignore></ignore>
166
								</action>
167
							</pluginExecution>
168
						</pluginExecutions>
169
					</lifecycleMappingMetadata>
170
				</configuration>
171
			</plugin>
172
		</plugins>
173
		</pluginManagement>
174
	</build>
175
</project>
(2-2/2)