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

    
62
        <dependency>
63
            <groupId>junit</groupId>
64
            <artifactId>junit</artifactId>
65
            <version>4.8.2</version>
66
        </dependency>
67

    
68
        <dependency>
69
            <groupId>com.googlecode.json-simple</groupId>
70
            <artifactId>json-simple</artifactId>
71
            <version>1.1</version>
72
        </dependency>
73
        <dependency>
74
            <groupId>limes</groupId>
75
            <artifactId>limes-original</artifactId>
76
            <version>1.0.0-SNAPSHOT</version>
77
        </dependency>
78
        <dependency>
79
            <groupId>org.eclipse.rdf4j</groupId>
80
            <artifactId>rdf4j-rio-api</artifactId>
81
            <version>2.0M2</version>
82
        </dependency>
83

    
84
        <dependency>
85
            <groupId>org.apache.hadoop</groupId>
86
            <artifactId>hadoop-common</artifactId>
87
            <version>2.6.0-cdh5.4.7</version>
88
        </dependency>
89
        <dependency>
90
            <groupId>org.apache.hadoop</groupId>
91
            <artifactId>hadoop-core</artifactId>
92
            <version>2.6.0-mr1-cdh5.4.7</version>
93
        </dependency>
94

    
95
        <dependency>
96
            <groupId>biz.paluch.redis</groupId>
97
            <artifactId>lettuce</artifactId>
98
            <version>3.5.0.Final</version>
99
            <classifier>shaded</classifier>
100
            <exclusions>
101
                <exclusion>
102
                    <groupId>io.reactivex</groupId>
103
                    <artifactId>rxjava</artifactId>
104
                </exclusion>
105
                <exclusion>
106
                    <groupId>org.latencyutils</groupId>
107
                    <artifactId>LatencyUtils</artifactId>
108
                </exclusion>
109
                <exclusion>
110
                    <groupId>io.netty</groupId>
111
                    <artifactId>netty-common</artifactId>
112
                </exclusion>
113
                <exclusion>
114
                    <groupId>io.netty</groupId>
115
                    <artifactId>netty-transport</artifactId>
116
                </exclusion>
117
                <exclusion>
118
                    <groupId>io.netty</groupId>
119
                    <artifactId>netty-handler</artifactId>
120
                </exclusion>
121
                <exclusion>
122
                    <groupId>io.netty</groupId>
123
                    <artifactId>netty-codec</artifactId>
124
                </exclusion>
125
                <exclusion>
126
                    <groupId>com.google.guava</groupId>
127
                    <artifactId>guava</artifactId>
128
                </exclusion>
129
                <exclusion>
130
                    <groupId>io.netty</groupId>
131
                    <artifactId>netty-transport-native-epoll</artifactId>
132
                </exclusion>
133
                <exclusion>
134
                    <groupId>org.apache.commons</groupId>
135
                    <artifactId>commons-pool2</artifactId>
136
                </exclusion>
137
            </exclusions>
138
        </dependency>
139
        <dependency>
140
            <groupId>org.datanucleus</groupId>
141
            <artifactId>datanucleus-core</artifactId>
142
            <version>2.0.3</version>
143
        </dependency>
144
        <dependency>
145
            <groupId>redis.clients</groupId>
146
            <artifactId>jedis</artifactId>
147
            <version>2.8.1</version>
148
        </dependency>
149
        <dependency>
150
            <groupId>org.apache.mrunit</groupId>
151
            <artifactId>mrunit</artifactId>
152
            <version>0.9.0-incubating</version>
153
            <classifier>hadoop2</classifier>
154
        </dependency>
155
    </dependencies>
156
    <repositories>
157
        <repository>
158
            <id>cloudera</id>
159
            <name>Cloudera Repository</name>
160
            <url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
161
            <releases>
162
                <enabled>true</enabled>
163
            </releases>
164
            <snapshots>
165
                <enabled>false</enabled>
166
            </snapshots>
167
        </repository>
168
    </repositories>
169

    
170
</project>
171

    
(2-2/2)