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-import</artifactId>
12
	<version>0.0.1-SNAPSHOT</version>
13
	<build>
14
		<plugins>
15
		</plugins>
16

    
17
	</build>
18
	<dependencies>
19
		<dependency>
20
			<groupId>javax.xml</groupId>
21
			<artifactId>jaxp-api</artifactId>
22
			<version>1.4.2</version>
23
		</dependency>
24
		<dependency>
25
			<groupId>net.sf.opencsv</groupId>
26
			<artifactId>opencsv</artifactId>
27
			<version>2.3</version>
28
		</dependency>
29
<dependency>
30
    <groupId>org.apache.poi</groupId>
31
    <artifactId>poi</artifactId>
32
    <version>3.8</version>
33
</dependency>
34
		<dependency>
35
			<groupId>org.apache.logging.log4j</groupId>
36
			<artifactId>log4j-core</artifactId>
37
			<version>2.0-rc2</version>
38
		</dependency>
39
		<dependency>
40
			<groupId>log4j</groupId>
41
			<artifactId>log4j</artifactId>
42
			<version>1.2.17</version>
43
		</dependency>
44
		<dependency>
45
			<groupId>org.slf4j</groupId>
46
			<artifactId>slf4j-api</artifactId>
47
			<version>1.7.6</version>
48
		</dependency>
49
		<dependency>
50
			<groupId>org.slf4j</groupId>
51
			<artifactId>slf4j-log4j12</artifactId>
52
			<version>1.7.6</version>
53
		</dependency>
54
		<dependency>
55
			<groupId>com.google.guava</groupId>
56
			<artifactId>guava-collections</artifactId>
57
			<version>r03</version>
58
		</dependency>
59
		<dependency>
60
			<groupId>eu.dnetlib</groupId>
61
			<artifactId>dnet-mapreduce-jobs</artifactId>
62
			<version>LATEST</version>
63
		</dependency>
64
		<dependency>
65
            	<groupId>eu.dnetlib</groupId>
66
            	<artifactId>dnet-openaire-data-protos</artifactId>
67
            	<version>LATEST</version>
68
		</dependency>
69
		<dependency>
70
			<groupId>org.apache.httpcomponents</groupId>
71
			<artifactId>httpclient</artifactId>
72
			<version>4.0-alpha4</version>
73
		</dependency>
74
		<dependency>
75
			<groupId>commons-httpclient</groupId>
76
			<artifactId>commons-httpclient</artifactId>
77
			<version>3.1</version>
78
		</dependency>
79
		<dependency>
80
			<groupId>junit</groupId>
81
			<artifactId>junit</artifactId>
82
			<version>4.8.2</version>
83
		</dependency>
84

    
85
		<dependency>
86
			<groupId>eu.dnetlib</groupId>
87
			<artifactId>cnr-rmi-api</artifactId>
88
			<version>LATEST</version>
89
		</dependency>
90
		<dependency>
91
			<groupId>org.apache.cxf</groupId>
92
			<artifactId>cxf-rt-frontend-jaxws</artifactId>
93
			<version>2.7.8</version>
94
		</dependency>
95

    
96
        <dependency>
97
            <groupId>in.ashwanthkumar</groupId>
98
            <artifactId>hadoop2-csv</artifactId>
99
            <version>2.0</version>
100
        </dependency>
101

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

    
117
</project>
118

    
    (1-1/1)