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

    
5
	<parent>
6
    		<groupId>eu.dnetlib</groupId>
7
	        <artifactId>dnet-hadoop-parent</artifactId>
8
            <version>1.0.0-SNAPSHOT</version>
9
	</parent>
10
	<modelVersion>4.0.0</modelVersion>
11
	<artifactId>icm-iis-3rdparty-pig-avrostorage</artifactId>
12
	<packaging>jar</packaging>
13
	<version>1.0.0-SNAPSHOT</version>
14
	
15
	<properties>
16
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17
	</properties>
18
	<dependencies>
19
        <dependency>
20
			<groupId>org.apache.pig</groupId>
21
			<artifactId>pig</artifactId>
22
			<version>${iis.pig.version}</version>
23
		</dependency>
24
        <dependency>
25
			<groupId>org.apache.avro</groupId>
26
			<artifactId>avro</artifactId>
27
			<version>${iis.avro.version}</version>
28
		</dependency>
29
        <dependency>
30
			<groupId>org.apache.hadoop</groupId>
31
			<artifactId>hadoop-common</artifactId>
32
			<version>${iis.hadoop.common.version}</version>
33
			<scope>provided</scope>
34
		</dependency>
35
        <dependency>
36
            <groupId>org.apache.hadoop</groupId>
37
            <artifactId>hadoop-core</artifactId>
38
            <version>${iis.hadoop.core.version}</version>
39
            <type>jar</type>
40
            <scope>provided</scope>
41
        </dependency>
42
        <dependency>
43
            <groupId>com.googlecode.json-simple</groupId>
44
            <artifactId>json-simple</artifactId>
45
            <version>1.1</version>
46
            <type>jar</type>
47
        </dependency>
48
        <dependency>
49
			<groupId>junit</groupId>
50
			<artifactId>junit</artifactId>
51
			<version>4.10</version>
52
			<scope>test</scope>
53
		</dependency>
54
        <dependency>
55
			<groupId>org.antlr</groupId>
56
			<artifactId>antlr-runtime</artifactId>
57
			<version>3.4</version>
58
		</dependency>
59
        <dependency>
60
            <groupId>eu.dnetlib</groupId>
61
            <artifactId>icm-iis-core</artifactId>
62
            <version>1.0.0-SNAPSHOT</version>
63
            <type>jar</type>
64
        </dependency>
65
	</dependencies>
66
	<build>
67
        <plugins>
68
			<plugin>
69
				<groupId>org.apache.maven.plugins</groupId>
70
				<artifactId>maven-compiler-plugin</artifactId>
71
				<configuration>
72
					<source>1.6</source>
73
					<target>1.6</target>
74
				</configuration>
75
			</plugin>
76
            <plugin>
77
                <groupId>org.apache.maven.plugins</groupId>
78
                <artifactId>maven-surefire-plugin</artifactId>
79
                <version>2.4.3</version>
80
                <configuration>
81
                  <redirectTestOutputToFile>true</redirectTestOutputToFile>
82
                    <includes>
83
                        <include>**/*Test.java</include>
84
                        <include>**/avro/Test*.java</include>
85
                    </includes>
86
                    <excludes>
87
                        <exclude>**/AllTests.java</exclude>
88
                        <exclude>**/Abstract*Test.java</exclude>
89
                        <exclude>**/*$*</exclude>
90
                    </excludes>
91
                </configuration>
92
            </plugin>
93
		</plugins>
94
	</build>
95
	<repositories>
96
        <repository>
97
			<id>cloudera</id>
98
			<name>Cloudera Repository</name>
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
	    <!-- This repository contains our patched 
108
	    version of "avro" and "avro-mapred" modules (see the dependencies section)
109
	    This entry might be removed when the patch to these modules becomes 
110
	    a part of the official Avro release.-->
111
	    <repository>
112
			<id>dnet-deps</id>
113
			<name>dnet dependencies</name>
114
			<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
115
			<releases>
116
				<enabled>true</enabled>
117
			</releases>
118
			<snapshots>
119
				<enabled>false</enabled>
120
			</snapshots>
121
			<layout>default</layout>
122
		</repository>
123
	</repositories>
124
</project>
(2-2/2)