Skip to content

Commit

Permalink
[NOID] Bumps apoc version after release
Browse files Browse the repository at this point in the history
  • Loading branch information
ncordon committed Mar 17, 2023
1 parent cc3d8b1 commit 68a86c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ downloadLicenses {

allprojects {
group = 'org.neo4j.procedure'
version = '4.4.0.15'
version = '4.4.0.16'
archivesBaseName = 'apoc'
description = """neo4j-apoc-procedures"""
}
Expand Down Expand Up @@ -71,8 +71,8 @@ subprojects {
// neo4jDockerImage system property is used in TestContainerUtil
systemProperties 'user.language' : 'en' ,
'user.country ' : 'US',
'neo4jDockerImage' : System.getProperty("NEO4JVERSION") ? 'neo4j:' + System.getProperty("NEO4JVERSION") + '-enterprise' : 'neo4j:4.4.18-enterprise',
'neo4jCommunityDockerImage': System.getProperty("NEO4JVERSION") ? 'neo4j:' + System.getProperty("NEO4JVERSION") : 'neo4j:4.4.18'
'neo4jDockerImage' : System.getProperty("NEO4JVERSION") ? 'neo4j:' + System.getProperty("NEO4JVERSION") + '-enterprise' : 'neo4j:4.4.19-enterprise',
'neo4jCommunityDockerImage': System.getProperty("NEO4JVERSION") ? 'neo4j:' + System.getProperty("NEO4JVERSION") : 'neo4j:4.4.19'

maxHeapSize = "8G"
forkEvery = 50
Expand Down Expand Up @@ -120,7 +120,7 @@ subprojects {

ext {
// NB: due to version.json generation by parsing this file, the next line must not have any if/then/else logic
neo4jVersion = "4.4.18"
neo4jVersion = "4.4.19"
// instead we apply the override logic here
neo4jVersionEffective = project.hasProperty("neo4jVersionOverride") ? project.getProperty("neo4jVersionOverride") : neo4jVersion
testContainersVersion = '1.17.6'
Expand Down
2 changes: 1 addition & 1 deletion test-utils/src/main/java/apoc/util/TestContainerUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public static Neo4jContainerExtension createEnterpriseDB(File baseDir, boolean w
importFolder.mkdirs();

// read neo4j version from build.gradle and use this as default
String neo4jDockerImageVersion = System.getProperty("neo4jDockerImage", "neo4j:4.4.18-enterprise");
String neo4jDockerImageVersion = System.getProperty("neo4jDockerImage", "neo4j:4.4.19-enterprise");

// use a separate folder for mounting plugins jar - build/libs might contain other jars as well.
pluginsFolder = new File(baseDir, "build/plugins");
Expand Down

0 comments on commit 68a86c3

Please sign in to comment.