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>org.eclipse.rdf4j</groupId>
75
            <artifactId>rdf4j-rio-api</artifactId>
76
            <version>2.0M2</version>
77
        </dependency>
78

    
79
        <dependency>
80
            <groupId>org.apache.hadoop</groupId>
81
            <artifactId>hadoop-common</artifactId>
82
            <version>2.6.0-cdh5.4.7</version>
83
        </dependency>
84
        <dependency>
85
            <groupId>org.apache.hadoop</groupId>
86
            <artifactId>hadoop-core</artifactId>
87
            <version>2.6.0-mr1-cdh5.4.7</version>
88
        </dependency>
89

    
90
        <dependency>
91
            <groupId>biz.paluch.redis</groupId>
92
            <artifactId>lettuce</artifactId>
93
            <version>3.5.0.Final</version>
94
            <classifier>shaded</classifier>
95
            <exclusions>
96
                <exclusion>
97
                    <groupId>io.reactivex</groupId>
98
                    <artifactId>rxjava</artifactId>
99
                </exclusion>
100
                <exclusion>
101
                    <groupId>org.latencyutils</groupId>
102
                    <artifactId>LatencyUtils</artifactId>
103
                </exclusion>
104
                <exclusion>
105
                    <groupId>io.netty</groupId>
106
                    <artifactId>netty-common</artifactId>
107
                </exclusion>
108
                <exclusion>
109
                    <groupId>io.netty</groupId>
110
                    <artifactId>netty-transport</artifactId>
111
                </exclusion>
112
                <exclusion>
113
                    <groupId>io.netty</groupId>
114
                    <artifactId>netty-handler</artifactId>
115
                </exclusion>
116
                <exclusion>
117
                    <groupId>io.netty</groupId>
118
                    <artifactId>netty-codec</artifactId>
119
                </exclusion>
120
                <exclusion>
121
                    <groupId>com.google.guava</groupId>
122
                    <artifactId>guava</artifactId>
123
                </exclusion>
124
                <exclusion>
125
                    <groupId>io.netty</groupId>
126
                    <artifactId>netty-transport-native-epoll</artifactId>
127
                </exclusion>
128
                <exclusion>
129
                    <groupId>org.apache.commons</groupId>
130
                    <artifactId>commons-pool2</artifactId>
131
                </exclusion>
132
            </exclusions>
133
        </dependency>
134
        <dependency>
135
            <groupId>org.datanucleus</groupId>
136
            <artifactId>datanucleus-core</artifactId>
137
            <version>2.0.3</version>
138
        </dependency>
139
        <dependency>
140
            <groupId>redis.clients</groupId>
141
            <artifactId>jedis</artifactId>
142
            <version>2.8.1</version>
143
        </dependency>
144
        <dependency>
145
            <groupId>org.apache.mrunit</groupId>
146
            <artifactId>mrunit</artifactId>
147
            <version>0.9.0-incubating</version>
148
            <classifier>hadoop2</classifier>
149
        </dependency>
150
        <dependency>
151
            <groupId>limes</groupId>
152
            <artifactId>limes-original</artifactId>
153
            <version>1.0.0-SNAPSHOT</version>
154
        </dependency>
155
        <!--      <dependency>
156
                  <groupId>limes</groupId>
157
                  <artifactId>limes-original</artifactId>
158
                  <version>1.0.0-SNAPSHOT</version>
159
              </dependency>
160

    
161
      -->
162
    </dependencies>
163
    <repositories>
164
        <repository>
165
            <id>cloudera</id>
166
            <name>Cloudera Repository</name>
167
            <url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
168
            <releases>
169
                <enabled>true</enabled>
170
            </releases>
171
            <snapshots>
172
                <enabled>false</enabled>
173
            </snapshots>
174
        </repository>
175
    </repositories>
176

    
177
</project>
178

    
(2-2/2)