Skip to content

Commit

Permalink
Updated dependencies for 5.20 - made several apache commons libraries…
Browse files Browse the repository at this point in the history
… that come with neo4j provided
  • Loading branch information
jexp committed Jun 5, 2024
1 parent 4683817 commit 84b2cca
Showing 1 changed file with 37 additions and 3 deletions.
40 changes: 37 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.neo4j</groupId>
<artifactId>neosemantics</artifactId>
<version>5.18.0</version>
<version>5.20.0</version>
<packaging>jar</packaging>
<name>neosemantics (n10s)</name>
<description>n10s is a plugin that enables the use of RDF in Neo4j</description>
Expand Down Expand Up @@ -34,8 +34,8 @@
</developers>

<properties>
<neo4j.version>5.18.0</neo4j.version>
<sesame.version>4.3.10</sesame.version>
<neo4j.version>5.20.0</neo4j.version>
<sesame.version>4.3.12</sesame.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand All @@ -52,10 +52,44 @@
<version>${neo4j.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.16.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.16.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.14.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.3.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.11.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.rdf4j</groupId>
<artifactId>rdf4j-rio-rdfxml</artifactId>
<version>${sesame.version}</version>
<!--exclusions>
<exclusion>
</exclusion>
</exclusions-->
</dependency>
<dependency>
<groupId>org.eclipse.rdf4j</groupId>
Expand Down

0 comments on commit 84b2cca

Please sign in to comment.