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
    <parent>
4
        <groupId>eu.dnetlib</groupId>
5
        <artifactId>icm-iis-parent-container</artifactId>
6
        <version>1.0.1-SNAPSHOT</version>
7
    </parent>
8
    <modelVersion>4.0.0</modelVersion>
9
    <artifactId>icm-iis-ingest</artifactId>
10
    <packaging>jar</packaging>
11
    <version>1.0.0-SNAPSHOT</version>
12

    
13
    <scm>
14
      <developerConnection>
15
        scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/icm-iis-ingest/trunk
16
      </developerConnection>
17
    </scm>
18

    
19
    <properties>
20
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21
        <scala.version>2.10.3</scala.version>
22
        <scala.binary.version>2.10</scala.binary.version>
23
    </properties>
24
    <dependencies>
25
        <dependency>
26
            <groupId>junit</groupId>
27
            <artifactId>junit</artifactId>
28
            <version>4.8.2</version>
29
            <scope>test</scope>
30
        </dependency>
31
        <dependency>
32
            <groupId>eu.dnetlib</groupId>
33
            <artifactId>icm-iis-core</artifactId>
34
            <version>[1.0.0,2.0.0)</version>
35
        </dependency>
36
        <dependency>
37
            <groupId>eu.dnetlib</groupId>
38
            <artifactId>icm-iis-core</artifactId>
39
            <version>[1.0.0,2.0.0)</version>
40
            <type>test-jar</type>
41
            <scope>test</scope>
42
        </dependency>
43
        <dependency>
44
            <groupId>eu.dnetlib</groupId>
45
            <artifactId>icm-iis-schemas</artifactId>
46
            <version>[1.0.0,2.0.0)</version>
47
        </dependency>
48
        <!-- required after introducing 'provided' scope for hadoop libs -->
49
        <dependency>
50
            <groupId>org.apache.hadoop</groupId>
51
            <artifactId>hadoop-core</artifactId>
52
            <version>${iis.hadoop.core.version}</version>
53
            <scope>provided</scope>
54
        </dependency>
55
        <dependency>
56
            <groupId>org.apache.hadoop</groupId>
57
            <artifactId>hadoop-common</artifactId>
58
            <version>${iis.hadoop.common.version}</version>
59
            <scope>provided</scope>
60
        </dependency>
61
        <!-- Needed by Avro { -->
62
        <dependency>
63
            <groupId>org.apache.avro</groupId>
64
            <artifactId>avro</artifactId>
65
            <version>${iis.avro.version}</version>
66
        </dependency>
67
        <dependency>
68
            <groupId>org.apache.avro</groupId>
69
            <artifactId>avro-mapred</artifactId>
70
            <version>${iis.avro.version}</version>
71
            <classifier>hadoop2</classifier>
72
        </dependency>
73
        <!-- html to text conversion -->
74
        <dependency>
75
			<groupId>org.jsoup</groupId>
76
			<artifactId>jsoup</artifactId>
77
			<version>1.8.1</version>
78
		</dependency>
79
    </dependencies>
80
    <build>
81
    </build>
82
    <repositories>
83
    </repositories>
84
</project>
(2-2/2)