Project

General

Profile

1
<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
    <parent>
4
        <groupId>eu.dnetlib</groupId>
5
        <artifactId>dnet-hadoop-parent</artifactId>
6
        <version>1.0.0</version>
7
        <relativePath></relativePath>
8
    </parent>
9
    <modelVersion>4.0.0</modelVersion>
10
    <groupId>eu.dnetlib</groupId>
11
    <artifactId>dnet-openaire-lod-interlinking</artifactId>
12
    <version>1.0.0-SNAPSHOT</version>
13

    
14
    <build>
15

    
16
        <plugins>
17
            <plugin>
18
                <groupId>org.apache.maven.plugins</groupId>
19
                <artifactId>maven-compiler-plugin</artifactId>
20
                <configuration>
21
                    <source>1.7</source>
22
                    <target>1.7</target>
23
                </configuration>
24
            </plugin>
25
        </plugins>
26

    
27
    </build>
28
    <dependencies>
29
        <dependency>
30
            <groupId>javax.xml</groupId>
31
            <artifactId>jaxp-api</artifactId>
32
            <version>1.4.2</version>
33
        </dependency>
34

    
35
        <dependency>
36
            <groupId>org.apache.poi</groupId>
37
            <artifactId>poi</artifactId>
38
            <version>3.8</version>
39
        </dependency>
40

    
41
        <dependency>
42
            <groupId>org.apache.logging.log4j</groupId>
43
            <artifactId>log4j-core</artifactId>
44
            <version>2.0-rc2</version>
45
        </dependency>
46
        <dependency>
47
            <groupId>log4j</groupId>
48
            <artifactId>log4j</artifactId>
49
            <version>1.2.17</version>
50
        </dependency>
51
        <dependency>
52
            <groupId>org.slf4j</groupId>
53
            <artifactId>slf4j-api</artifactId>
54
            <version>1.7.6</version>
55
        </dependency>
56
        <dependency>
57
            <groupId>org.slf4j</groupId>
58
            <artifactId>slf4j-log4j12</artifactId>
59
            <version>1.7.6</version>
60
        </dependency>
61
      <dependency>
62
			<groupId>com.google.guava</groupId>
63
			<artifactId>guava</artifactId>
64
			<version>15.0</version>
65
		</dependency>
66

    
67

    
68
        <dependency>
69
            <groupId>org.apache.httpcomponents</groupId>
70
            <artifactId>httpclient</artifactId>
71
            <version>4.0-alpha4</version>
72
        </dependency>
73
        <dependency>
74
            <groupId>commons-httpclient</groupId>
75
            <artifactId>commons-httpclient</artifactId>
76
            <version>3.1</version>
77
        </dependency>
78
        <dependency>
79
            <groupId>junit</groupId>
80
            <artifactId>junit</artifactId>
81
            <version>4.8.2</version>
82
        </dependency>
83
        <dependency>
84
            <groupId>eu.dnetlib</groupId>
85
            <artifactId>cnr-rmi-api</artifactId>
86
            <version>LATEST</version>
87
        </dependency>
88
        <dependency>
89
            <groupId>org.apache.cxf</groupId>
90
            <artifactId>cxf-rt-frontend-jaxws</artifactId>
91
            <version>2.7.8</version>
92
        </dependency>
93
        <dependency>
94
            <groupId>org.apache.hadoop</groupId>
95
            <artifactId>hadoop-common</artifactId>
96
            <version>2.6.0-cdh5.4.7</version>
97
        </dependency>
98
        <dependency>
99
            <groupId>org.apache.hadoop</groupId>
100
            <artifactId>hadoop-mapreduce-client-core</artifactId>
101
            <version>2.6.0-cdh5.4.3</version>
102
        </dependency>
103

    
104
    </dependencies>
105
    <repositories>
106
        <repository>
107
            <id>cloudera</id>
108
            <name>Cloudera Repository</name>
109
            <url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
110
            <releases>
111
                <enabled>true</enabled>
112
            </releases>
113
            <snapshots>
114
                <enabled>false</enabled>
115
            </snapshots>
116
        </repository>
117
    </repositories>
118

    
119
</project>
120

    
(2-2/2)