Project

General

Profile

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