Skip to content

Update dependencies #946

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions driver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<properties>
<bundle.name>${project.groupId}.${project.artifactId}</bundle.name>
<maven.build.timestamp.format>'v'yyyyMMdd-HHmm</maven.build.timestamp.format>
<moduleName>org.neo4j.driver</moduleName>
<rootDir>${project.basedir}/..</rootDir>
</properties>

<parent>
<groupId>org.neo4j.driver</groupId>
<artifactId>neo4j-java-driver-parent</artifactId>
Expand All @@ -23,6 +16,13 @@
<name>Neo4j Java Driver</name>
<description>Access to the Neo4j graph database through Java</description>

<properties>
<bundle.name>${project.groupId}.${project.artifactId}</bundle.name>
<maven.build.timestamp.format>'v'yyyyMMdd-HHmm</maven.build.timestamp.format>
<moduleName>org.neo4j.driver</moduleName>
<rootDir>${project.basedir}/..</rootDir>
</properties>

<dependencies>
<!-- Compile dependencies -->
<dependency>
Expand Down
8 changes: 4 additions & 4 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<properties>
<rootDir>${project.basedir}/..</rootDir>
</properties>

<parent>
<groupId>org.neo4j.driver</groupId>
<artifactId>neo4j-java-driver-parent</artifactId>
Expand All @@ -21,6 +17,10 @@
<name>Neo4j Java Driver Examples</name>
<description>Examples of using the Neo4j graph database through Java</description>

<properties>
<rootDir>${project.basedir}/..</rootDir>
</properties>

<dependencies>
<!-- Compile dependencies -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<!-- Please note that when updating this dependency -->
<!-- (i.e. due to a security vulnerability or bug) that the -->
<!-- corresponding server dependency also needs updating.-->
<reactor-bom.version>Dysprosium-SR20</reactor-bom.version>
<reactor-bom.version>Dysprosium-SR21</reactor-bom.version>
<rxjava.version>2.2.21</rxjava.version>
<slf4j-api.version>1.7.31</slf4j-api.version>
<hamcrest-junit.version>2.0.0.0</hamcrest-junit.version>
Expand Down
11 changes: 6 additions & 5 deletions testkit-backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,23 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>neo4j-java-driver-parent</artifactId>
<groupId>org.neo4j.driver</groupId>
<version>4.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<properties>
<rootDir>${project.basedir}/..</rootDir>
</properties>

<artifactId>testkit-backend</artifactId>

<name>Neo4j Java Driver Testkit Backend</name>
<description>Integration component for use with Testkit</description>

<properties>
<rootDir>${project.basedir}/..</rootDir>
</properties>

<dependencies>
<dependency>
<groupId>org.neo4j.driver</groupId>
Expand Down