Project

General

Profile

1 33522 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/xsd/maven-4.0.0.xsd">
2 18684 mateusz.ko
  <!--
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 26487 marek.hors
	<parent>
20
    		<groupId>eu.dnetlib</groupId>
21
	        <artifactId>dnet-hadoop-parent</artifactId>
22 33521 marek.hors
            <version>1.0.0</version>
23 26487 marek.hors
	</parent>
24
25 18684 mateusz.ko
  <modelVersion>4.0.0</modelVersion>
26
27
  <artifactId>icm-iis-3rdparty-avro-json</artifactId>
28 33524 marek.hors
  <version>1.1-SNAPSHOT</version>
29 18684 mateusz.ko
  <packaging>jar</packaging>
30
31 33403 marek.hors
  <scm>
32
    <developerConnection>
33 33524 marek.hors
      scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-3rdparty-avro-json/trunk
34 33403 marek.hors
    </developerConnection>
35
  </scm>
36
37 18684 mateusz.ko
  <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 34633 marek.hors
      <version>[1.0.0,2.0.0)</version>
66 18684 mateusz.ko
    </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 26511 marek.hors
      <version>${iis.avro.version}</version>
77 18684 mateusz.ko
    </dependency>
78
79
    <dependency>
80
      <groupId>org.apache.avro</groupId>
81
      <artifactId>avro-mapred</artifactId>
82 26511 marek.hors
      <version>${iis.avro.version}</version>
83 19004 mateusz.ko
      <classifier>hadoop2</classifier>
84 18684 mateusz.ko
    </dependency>
85
86
    <!-- Hadoop Dependencies -->
87
    <dependency>
88
      <groupId>org.apache.hive</groupId>
89
      <artifactId>hive-serde</artifactId>
90 26509 marek.hors
      <version>${iis.hive.version}</version>
91 18684 mateusz.ko
      <scope>provided</scope>
92
    </dependency>
93
    <dependency>
94
      <groupId>org.apache.hadoop</groupId>
95
      <artifactId>hadoop-client</artifactId>
96 26314 mateusz.ko
      <version>${iis.hadoop.version}</version>
97 18684 mateusz.ko
      <scope>provided</scope>
98
    </dependency>
99
  </dependencies>
100
101 26551 marek.hors
	<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 18684 mateusz.ko
  </repositories>
113
</project>