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
        <dependency>
103
 		 	<groupId>joda-time</groupId>
104
 		 	<artifactId>joda-time</artifactId>
105
 		 	<version>2.9.1</version>
106
		</dependency>
107

    
108
		<dependency>
109
			<groupId>com.jolbox</groupId>
110
			<artifactId>bonecp</artifactId>
111
			<version>0.8.0.RELEASE</version>
112
		</dependency>
113
		
114
		<dependency>
115
			  <groupId>org.apache.jena</groupId>
116
			  <artifactId>apache-jena-libs</artifactId>
117
			  <type>pom</type>
118
			  <version>2.12.1</version>
119
 		 </dependency>
120
		<!-- <dependency>
121
  		   <groupId>org.apache.jena</groupId>
122
		   <artifactId>apache-jena-libs</artifactId>
123
		   <type>pom</type>
124
		   <version>3.0.1</version>
125
		</dependency> -->
126
		 
127
		<dependency>
128
			 <groupId>virtuoso</groupId>
129
			 <artifactId>jdbc-driver</artifactId>
130
			 <version>4.0</version>
131
		</dependency>
132

    
133
		<dependency>
134
			  <groupId>virtuoso</groupId>
135
			  <artifactId>jena</artifactId>
136
			  <version>2.10.1</version>
137
		</dependency>
138
	</dependencies>
139
	<repositories>
140
		<repository>
141
			<id>cloudera</id>
142
			<name>Cloudera Repository</name>
143
			<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
144
			<releases>
145
				<enabled>true</enabled>
146
			</releases>
147
			<snapshots>
148
				<enabled>false</enabled>
149
			</snapshots>
150
		</repository>
151
		<!-- Linked Data Stack Repository -->
152
		<repository>
153
      		<id>ldstack</id>
154
      		<url>http://mvn.linkeddata.org/content/groups/linkeddata.org/</url>
155
    	</repository>
156
	</repositories>
157

    
158
</project>
159

    
    (1-1/1)