Skip to content

Commit 6c9b933

Browse files
committed
Version update
1 parent 5b62e32 commit 6c9b933

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

pom.xml

+9-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<picocli.version>4.6.2</picocli.version>
6868
<jackson.version>2.12.0</jackson.version>
6969
<commons-vfs2.version>2.9.0</commons-vfs2.version>
70-
<hadoop.version>3.3.4</hadoop.version>
70+
<hadoop.version>3.4.0</hadoop.version>
7171
<!-- <jetty.version>9.4.40.v20210413</jetty.version> -->
7272
<timestamp>${maven.build.timestamp}</timestamp>
7373
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
@@ -191,6 +191,12 @@
191191
</exclusions>
192192
</dependency>
193193

194+
<dependency>
195+
<groupId>org.apache.hadoop</groupId>
196+
<artifactId>hadoop-hdfs-client</artifactId>
197+
<version>${hadoop.version}</version>
198+
</dependency>
199+
194200
<!-- Also declares versions for sub groups such as
195201
org.glassfish.jersey.containers -->
196202
<dependency>
@@ -214,6 +220,7 @@
214220
<artifactId>conjure-datasources</artifactId>
215221
<version>${conjure.version}</version>
216222
<exclusions>
223+
<!--
217224
<exclusion>
218225
<groupId>org.apache.spark</groupId>
219226
<artifactId>spark-sql_2.13</artifactId>
@@ -222,6 +229,7 @@
222229
<groupId>org.apache.spark</groupId>
223230
<artifactId>spark-core_2.13</artifactId>
224231
</exclusion>
232+
-->
225233
</exclusions>
226234
</dependency>
227235
<dependency>

rdf-processing-toolkit-cli/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@
2828
<groupId>net.sansa-stack</groupId>
2929
<artifactId>sansa-cmds-picocli_2.13</artifactId>
3030
<exclusions>
31+
<!--
3132
<exclusion>
3233
<groupId>org.apache.hadoop</groupId>
3334
<artifactId>hadoop-client-runtime</artifactId>
3435
</exclusion>
36+
-->
3537

3638
<!-- Spark excluded here for the shaded sansa-spark-jakarta
3739
artifact -->
@@ -88,6 +90,10 @@
8890
<groupId>org.apache.hadoop</groupId>
8991
<artifactId>hadoop-common</artifactId>
9092
</dependency>
93+
<dependency>
94+
<groupId>org.apache.hadoop</groupId>
95+
<artifactId>hadoop-hdfs-client</artifactId>
96+
</dependency>
9197
<dependency>
9298
<groupId>org.aksw.conjure</groupId>
9399
<artifactId>conjure-datasources</artifactId>

0 commit comments

Comments
 (0)