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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3

    
4
	<parent>
5
    		<groupId>eu.dnetlib</groupId>
6
	        <artifactId>dnet-hadoop-parent</artifactId>
7
            <version>1.0.0</version>
8
	</parent>
9
	<modelVersion>4.0.0</modelVersion>
10
	<artifactId>icm-iis-3rdparty-pig-avrostorage</artifactId>
11
	<packaging>jar</packaging>
12
	<version>1.0.1-SNAPSHOT</version>
13

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