Skip to content

Commit 6ddece8

Browse files
committed
Kotlin fix
1 parent cc42ebb commit 6ddece8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ ext {
154154
// NB: due to version.json generation by parsing this file, the next line must not have any if/then/else logic
155155
neo4jVersion = "5.26.0"
156156
// instead we apply the override logic here
157-
neo4jVersionEffective = project.hasProperty("neo4jVersionOverride") ? project.getProperty("neo4jVersionOverride") : neo4jVersion
157+
neo4jVersionEffective = project.hasProperty("neo4jVersionOverride") ? project.getProperty("neo4jVersionOverride") : neo4jVersion + "-SNAPSHOT"
158158
testContainersVersion = '1.20.2'
159159
apacheArrowVersion = '15.0.0'
160160
}

extended/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jar {
2626
}
2727

2828
compileKotlin {
29+
dependsOn(generateGrammarSource)
2930
kotlinOptions.jvmTarget = "17"
3031
}
3132

3233
generateGrammarSource {
33-
dependsOn(compileKotlin)
3434
arguments += ["-package", "apoc.custom"]
3535
}
3636

0 commit comments

Comments
 (0)