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</version>
8
    </parent>
9
    <modelVersion>4.0.0</modelVersion>
10
    <artifactId>dnet-openaire-lodexport-wf</artifactId>
11
    <packaging>jar</packaging>
12
    <version>1.0.0-SNAPSHOT</version>
13

    
14
   
15
    <properties>
16
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17
        <iis.hadoop.frontend.home.dir>home</iis.hadoop.frontend.home.dir>
18
        <!-- CNR CLUSTER PROPS-->
19
      		<iis.hadoop.frontend.host.name>oozie.t.hadoop.research-infrastructures.eu  </iis.hadoop.frontend.host.name>
20
                <oozieServiceLoc>http://oozie.t.hadoop.research-infrastructures.eu:11000/oozie</oozieServiceLoc>
21
         <nameNode>hdfs://nmis-hadoop-cluster</nameNode>
22
         <jobTracker> nmis-hadoop-jt</jobTracker>  
23

    
24
        <queueName>default</queueName>
25

    
26
        <!-- DM CLUSTER PROPS 
27
        <iis.hadoop.frontend.host.name>gateway.hadoop.dm.openaire.eu</iis.hadoop.frontend.host.name>
28
        <oozieServiceLoc>http://oozie.hadoop.dm.openaire.eu:11000/oozie</oozieServiceLoc>
29
        <nameNode>hdfs://dm-cluster-nn</nameNode>
30
        <jobTracker>dm-cluster-jt</jobTracker>
31

    
32
      IIS CLUSTER PROPS  
33

    
34
         <iis.hadoop.frontend.host.name>oozie.hadoop.iis.openaire.eu</iis.hadoop.frontend.host.name>
35
                       <oozieServiceLoc>http://oozie.hadoop.iis.openaire.eu:11000/oozie</oozieServiceLoc>
36
                        <nameNode>hdfs://iis-cluster-nn</nameNode>
37
                        <jobTracker>iis-cluster-jt</jobTracker>
38
        -->
39

    
40
    </properties>
41

    
42
    <dependencies>
43

    
44

    
45
        <dependency>
46
            <groupId>eu.dnetlib</groupId>
47
            <artifactId>icm-iis-core</artifactId>
48
            <version>1.0.0</version>
49
        </dependency>
50

    
51

    
52
 <dependency>
53
	<groupId>com.google.guava</groupId>
54
	<artifactId>guava</artifactId>
55
	<version>15.0</version>
56
</dependency>
57

    
58

    
59
        <dependency>
60
            <groupId>org.apache.hadoop</groupId>
61
            <artifactId>hadoop-common</artifactId>
62
            <version>${iis.hadoop.common.version}</version>
63
            <scope>provided</scope>
64
        </dependency>
65
        <dependency>
66
            <groupId>org.apache.oozie</groupId>
67
            <artifactId>oozie-core</artifactId>
68
            <version>${iis.oozie.version}</version>
69
            <scope>provided</scope>
70
        </dependency>
71

    
72
        <!-- StreamingMain was moved to oozie-sharelib-pig since cdh4.3.1 -->
73
        <dependency>
74
            <groupId>org.apache.oozie</groupId>
75
            <artifactId>oozie-sharelib-streaming</artifactId>
76
            <version>${iis.oozie.version}</version>
77
            <scope>test</scope>
78
        </dependency>
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.hadoop</groupId>
89
            <artifactId>hadoop-hdfs</artifactId>
90
            <version>${iis.hadoop.hdfs.version}</version>
91
            <scope>test</scope>
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

    
115
        <!-- Needed by our Hadoop Streaming workflow node { -->
116
        <dependency>
117
            <groupId>eu.dnetlib</groupId>
118
            <artifactId>icm-iis-3rdparty-avro-json</artifactId>
119
            <version>1.0</version>
120
        </dependency>
121
        <dependency>
122
            <groupId>org.apache.hadoop</groupId>
123
            <artifactId>hadoop-streaming</artifactId>
124
            <version>${iis.hadoop.streaming.version}</version>
125
        </dependency>
126
        <!-- Needed by our Hadoop Streaming workflow node } -->
127
        <dependency>
128
            <groupId>org.apache.hive</groupId>
129
            <artifactId>hive-serde</artifactId>
130
            <version>0.9.0-cdh4.1.2</version>
131
            <scope>test</scope>
132
        </dependency>
133
        <dependency>
134
            <groupId>com.cloudera.cdh</groupId>
135
            <artifactId>hive-root</artifactId>
136
            <version>0.9.0-cdh4.1.2</version>
137
            <type>pom</type>
138
            <scope>test</scope>
139
        </dependency>
140
        <dependency>
141
            <groupId>org.apache.hive</groupId>
142
            <artifactId>hive-cli</artifactId>
143
            <version>0.9.0-cdh4.1.2</version>
144
            <scope>test</scope>
145
            <type>jar</type>
146
        </dependency>
147
        <dependency>
148
            <groupId>org.apache.hive</groupId>
149
            <artifactId>hive-exec</artifactId>
150
            <version>0.9.0-cdh4.1.2</version>
151
            <scope>test</scope>
152
            <type>jar</type>
153
        </dependency>
154
        <dependency>
155
            <groupId>org.apache.hive</groupId>
156
            <artifactId>hive-builtins</artifactId>
157
            <version>0.9.0-cdh4.1.2</version>
158
            <scope>test</scope>
159
            <type>jar</type>
160
        </dependency>
161
        <dependency>
162
            <groupId>eu.dnetlib</groupId>
163
            <artifactId>icm-iis-common</artifactId>
164
            <version>1.0.0</version>
165
            <scope>test</scope>
166
            <type>jar</type>
167
        </dependency>
168
        <dependency>
169
            <groupId>postgresql</groupId>
170
            <artifactId>postgresql</artifactId>
171
            <version>9.1-901.jdbc4</version>
172
        </dependency>
173

    
174
        <dependency>
175
            <groupId>eu.dnetlib</groupId>
176
            <artifactId>dnet-openaire-lod-export</artifactId>
177
            <version>1.0.0-SNAPSHOT</version>
178
        </dependency>
179

    
180
        <dependency>
181
            <groupId>eu.dnetlib</groupId>
182
            <artifactId>dnet-openaire-lod-import</artifactId>
183
            <version>0.0.1-SNAPSHOT</version>
184
        </dependency>
185
    </dependencies>
186

    
187

    
188
    <build>
189
        <plugins>
190

    
191
            <plugin>
192
                <groupId>org.codehaus.mojo</groupId>
193
                <artifactId>build-helper-maven-plugin</artifactId>
194
                <executions>
195
                    <execution>
196
                        <id>add-source</id>
197
                        <phase>generate-sources</phase>
198
                        <goals>
199
                            <goal>add-source</goal>
200
                        </goals>
201
                        <configuration>
202
                            <sources>
203
                                <source>${project.build.directory}/generated-sources/java/</source>
204
                            </sources>
205
                        </configuration>
206
                    </execution>
207
                </executions>
208
            </plugin>
209
        </plugins>
210
        <pluginManagement>
211
            <plugins>
212
                <!--This plugin's configuration is used to store Eclipse m2e settings
213
                    only. It has no influence on the Maven build itself. -->
214
                <plugin>
215
                    <groupId>org.eclipse.m2e</groupId>
216
                    <artifactId>lifecycle-mapping</artifactId>
217
                    <version>1.0.0</version>
218
                    <configuration>
219
                        <lifecycleMappingMetadata>
220
                            <pluginExecutions>
221
                                <pluginExecution>
222
                                    <pluginExecutionFilter>
223
                                        <groupId>
224
                                            org.apache.avro
225
                                        </groupId>
226
                                        <artifactId>
227
                                            avro-maven-plugin
228
                                        </artifactId>
229
                                        <versionRange>
230
                                            [1.7.4,)
231
                                        </versionRange>
232
                                        <goals>
233
                                            <groupId>eu.dnetlib</groupId>
234
                                            <artifactId>dnet-openaire-lodexport</artifactId>
235
                                            <version>0.0.1-SNAPSHOT</version>
236
                                            <goal>idl-protocol</goal>
237
                                            <goal>schema</goal>
238
                                        </goals>
239
                                    </pluginExecutionFilter>
240
                                    <action>
241
                                        <ignore></ignore>
242
                                    </action>
243
                                </pluginExecution>
244
                                <pluginExecution>
245
                                    <pluginExecutionFilter>
246
                                        <groupId>
247
                                            org.codehaus.mojo
248
                                        </groupId>
249
                                        <artifactId>
250
                                            build-helper-maven-plugin
251
                                        </artifactId>
252
                                        <versionRange>
253
                                            [1.7,)
254
                                        </versionRange>
255
                                        <goals>
256
                                            <goal>add-source</goal>
257
                                        </goals>
258
                                    </pluginExecutionFilter>
259
                                    <action>
260
                                        <ignore></ignore>
261
                                    </action>
262
                                </pluginExecution>
263
                            </pluginExecutions>
264
                        </lifecycleMappingMetadata>
265
                    </configuration>
266
                </plugin>
267

    
268
                <!--	<plugin>
269
                        <groupId>org.apache.maven.plugins</groupId>
270
                        <artifactId>maven-compiler-plugin</artifactId>
271
                        <version>3.1</version>
272
                        <configuration>
273
                            <source>1.6</source>
274
                            <target>1.6</target>
275
                            <executable>${JAVA_HOME}/bin</executable>
276
                        </configuration>
277
                    </plugin>-->
278

    
279
            </plugins>
280
        </pluginManagement>
281
    </build>
282
    <repositories>
283
        <repository>
284
            <id>cloudera</id>
285
            <name>Cloudera Repository</name>
286
            <url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
287
            <releases>
288
                <enabled>true</enabled>
289
            </releases>
290
            <snapshots>
291
                <enabled>false</enabled>
292
            </snapshots>
293
        </repository>
294
    </repositories>
295
</project>
(2-2/6)