1 |
18577
|
marek.hors
|
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
33614
|
marek.hors
|
<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 |
18577
|
marek.hors
|
<parent>
|
4 |
26488
|
marek.hors
|
<groupId>eu.dnetlib</groupId>
|
5 |
|
|
<artifactId>icm-iis-parent-container</artifactId>
|
6 |
35713
|
marek.hors
|
<version>1.0.1-SNAPSHOT</version>
|
7 |
26488
|
marek.hors
|
</parent>
|
8 |
18577
|
marek.hors
|
<modelVersion>4.0.0</modelVersion>
|
9 |
|
|
<artifactId>uoa-iis-documentsclassification</artifactId>
|
10 |
|
|
<packaging>jar</packaging>
|
11 |
33616
|
marek.hors
|
<version>1.0.1-SNAPSHOT</version>
|
12 |
33425
|
marek.hors
|
|
13 |
|
|
<scm>
|
14 |
|
|
<developerConnection>
|
15 |
33616
|
marek.hors
|
scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-iis-documentsclassification/trunk
|
16 |
33425
|
marek.hors
|
</developerConnection>
|
17 |
|
|
</scm>
|
18 |
26488
|
marek.hors
|
|
19 |
18577
|
marek.hors
|
<properties>
|
20 |
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
21 |
|
|
</properties>
|
22 |
|
|
<dependencies>
|
23 |
22326
|
dominika.t
|
<dependency>
|
24 |
|
|
<groupId>eu.dnetlib</groupId>
|
25 |
|
|
<artifactId>icm-iis-core</artifactId>
|
26 |
34632
|
marek.hors
|
<version>[1.0.0,2.0.0)</version>
|
27 |
22326
|
dominika.t
|
</dependency>
|
28 |
|
|
<dependency>
|
29 |
|
|
<groupId>eu.dnetlib</groupId>
|
30 |
|
|
<artifactId>icm-iis-core</artifactId>
|
31 |
34632
|
marek.hors
|
<version>[1.0.0,2.0.0)</version>
|
32 |
22326
|
dominika.t
|
<type>test-jar</type>
|
33 |
|
|
<scope>test</scope>
|
34 |
|
|
</dependency>
|
35 |
|
|
<dependency>
|
36 |
|
|
<groupId>eu.dnetlib</groupId>
|
37 |
|
|
<artifactId>icm-iis-schemas</artifactId>
|
38 |
34632
|
marek.hors
|
<version>[1.0.0,2.0.0)</version>
|
39 |
22326
|
dominika.t
|
</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 |
34632
|
marek.hors
|
<version>[1.0,2.0)</version>
|
65 |
22326
|
dominika.t
|
</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 |
24187
|
dominika.t
|
<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 |
22326
|
dominika.t
|
<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 |
34632
|
marek.hors
|
<version>[1.0.0,2.0.0)</version>
|
117 |
24187
|
dominika.t
|
</dependency>
|
118 |
18577
|
marek.hors
|
</dependencies>
|
119 |
|
|
<build>
|
120 |
|
|
<plugins>
|
121 |
22326
|
dominika.t
|
<!-- 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 |
18577
|
marek.hors
|
</plugins>
|
142 |
|
|
<pluginManagement>
|
143 |
22401
|
marek.hors
|
<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 |
33614
|
marek.hors
|
<ignore />
|
165 |
22401
|
marek.hors
|
</action>
|
166 |
|
|
</pluginExecution>
|
167 |
|
|
</pluginExecutions>
|
168 |
|
|
</lifecycleMappingMetadata>
|
169 |
|
|
</configuration>
|
170 |
|
|
</plugin>
|
171 |
|
|
</plugins>
|
172 |
18577
|
marek.hors
|
</pluginManagement>
|
173 |
|
|
</build>
|
174 |
|
|
</project>
|