1
|
<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/xsd/maven-4.0.0.xsd">
|
2
|
<!--
|
3
|
Licensed to the Apache Software Foundation (ASF) under one
|
4
|
or more contributor license agreements. See the NOTICE file
|
5
|
distributed with this work for additional information
|
6
|
regarding copyright ownership. The ASF licenses this file
|
7
|
to you under the Apache License, Version 2.0 (the
|
8
|
"License"); you may not use this file except in compliance
|
9
|
with the License. You may obtain a copy of the License at
|
10
|
|
11
|
http://www.apache.org/licenses/LICENSE-2.0
|
12
|
|
13
|
Unless required by applicable law or agreed to in writing, software
|
14
|
distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
See the License for the specific language governing permissions and
|
17
|
limitations under the License.
|
18
|
-->
|
19
|
<parent>
|
20
|
<groupId>eu.dnetlib</groupId>
|
21
|
<artifactId>dnet-hadoop-parent</artifactId>
|
22
|
<version>1.0.0</version>
|
23
|
</parent>
|
24
|
|
25
|
<modelVersion>4.0.0</modelVersion>
|
26
|
|
27
|
<artifactId>icm-iis-3rdparty-avro-json</artifactId>
|
28
|
<version>1.1-SNAPSHOT</version>
|
29
|
<packaging>jar</packaging>
|
30
|
|
31
|
<scm>
|
32
|
<developerConnection>
|
33
|
scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-3rdparty-avro-json/trunk
|
34
|
</developerConnection>
|
35
|
</scm>
|
36
|
|
37
|
<name>Avro/JSON InputFormat/OutputFormats and SerDes</name>
|
38
|
<url>http://www.cloudera.com</url>
|
39
|
|
40
|
<properties>
|
41
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
42
|
<eclipse.output.directory>eclipse-classes</eclipse.output.directory>
|
43
|
</properties>
|
44
|
|
45
|
<build>
|
46
|
<plugins>
|
47
|
<plugin>
|
48
|
<groupId>org.apache.maven.plugins</groupId>
|
49
|
<artifactId>maven-eclipse-plugin</artifactId>
|
50
|
<version>2.9</version>
|
51
|
<configuration>
|
52
|
<buildOutputDirectory>eclipse-classes</buildOutputDirectory>
|
53
|
<downloadSources>true</downloadSources>
|
54
|
<downloadJavadocs>false</downloadJavadocs>
|
55
|
</configuration>
|
56
|
</plugin>
|
57
|
|
58
|
</plugins>
|
59
|
</build>
|
60
|
|
61
|
<dependencies>
|
62
|
<dependency>
|
63
|
<groupId>eu.dnetlib</groupId>
|
64
|
<artifactId>icm-iis-core</artifactId>
|
65
|
<version>[1.0.0,2.0.0)</version>
|
66
|
</dependency>
|
67
|
<dependency>
|
68
|
<groupId>junit</groupId>
|
69
|
<artifactId>junit</artifactId>
|
70
|
<version>4.8.2</version>
|
71
|
<scope>test</scope>
|
72
|
</dependency>
|
73
|
<dependency>
|
74
|
<groupId>org.apache.avro</groupId>
|
75
|
<artifactId>avro</artifactId>
|
76
|
<version>${iis.avro.version}</version>
|
77
|
</dependency>
|
78
|
|
79
|
<dependency>
|
80
|
<groupId>org.apache.avro</groupId>
|
81
|
<artifactId>avro-mapred</artifactId>
|
82
|
<version>${iis.avro.version}</version>
|
83
|
<classifier>hadoop2</classifier>
|
84
|
</dependency>
|
85
|
|
86
|
<!-- Hadoop Dependencies -->
|
87
|
<dependency>
|
88
|
<groupId>org.apache.hive</groupId>
|
89
|
<artifactId>hive-serde</artifactId>
|
90
|
<version>${iis.hive.version}</version>
|
91
|
<scope>provided</scope>
|
92
|
</dependency>
|
93
|
<dependency>
|
94
|
<groupId>org.apache.hadoop</groupId>
|
95
|
<artifactId>hadoop-client</artifactId>
|
96
|
<version>${iis.hadoop.version}</version>
|
97
|
<scope>provided</scope>
|
98
|
</dependency>
|
99
|
</dependencies>
|
100
|
|
101
|
<repositories>
|
102
|
<repository>
|
103
|
<id>cloudera</id>
|
104
|
<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
|
105
|
<releases>
|
106
|
<enabled>true</enabled>
|
107
|
</releases>
|
108
|
<snapshots>
|
109
|
<enabled>false</enabled>
|
110
|
</snapshots>
|
111
|
</repository>
|
112
|
</repositories>
|
113
|
</project>
|