Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.

Commit a68de65

Browse files
authored
Merge pull request #6 from admin-shell-io/fix/upgradeCommonsCompress
Upgrade commons-compress version in RDF serializer
2 parents 9b728f1 + 1d467c6 commit a68de65

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

dataformat-rdf/pom.xml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@
2727
<groupId>org.apache.jena</groupId>
2828
<artifactId>jena-arq</artifactId>
2929
<version>${jena.version}</version>
30+
<exclusions>
31+
<exclusion>
32+
<!-- exclusion is necessary due to an unresolved vulnarability in the version used by Jena 3.x. Needs to be removed as soon as Jena has upgraded to a later version of the dependency. -->
33+
<groupId>org.apache.commons</groupId>
34+
<artifactId>commons-compress</artifactId>
35+
</exclusion>
36+
</exclusions>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.apache.commons</groupId>
40+
<artifactId>commons-compress</artifactId>
41+
<version>${commons-compress.version}</version>
3042
</dependency>
3143
<dependency>
3244
<groupId>junit</groupId>
@@ -44,4 +56,4 @@
4456
</dependencies>
4557

4658

47-
</project>
59+
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
<woodstox-core-asl.version>4.4.1</woodstox-core-asl.version>
7070
<commons-codec.version>1.15</commons-codec.version>
7171
<commons-io.version>2.6</commons-io.version>
72+
<commons-compress.version>1.21</commons-compress.version>
7273
<shacl.version>1.3.2</shacl.version>
7374
<commons-lang3.version>3.8.1</commons-lang3.version>
7475
<gpg.keyname>0xDFCC34A6</gpg.keyname>

0 commit comments

Comments
 (0)