Skip to content

Commit 885db16

Browse files
authored
Merge pull request #9660 from neo-technology/gds-211-add-525
Add support for 5.25
2 parents 1dc9b31 + 958b850 commit 885db16

File tree

8 files changed

+716
-2
lines changed

8 files changed

+716
-2
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
apply plugin: 'java-library'
3+
4+
description = 'Neo4j Graph Data Science :: Neo4j Kernel Adapter 5.25'
5+
6+
group = 'org.neo4j.gds'
7+
8+
dependencies {
9+
annotationProcessor project(':annotations')
10+
annotationProcessor group: 'org.neo4j', name: 'annotations', version: neos.'5.25'
11+
annotationProcessor openGds.immutables.value
12+
13+
compileOnly project(':annotations')
14+
compileOnly openGds.immutables.value.annotations
15+
neodeps().each {
16+
compileOnly(group: 'org.neo4j', name: it, version: neos.'5.25') {
17+
transitive = false
18+
}
19+
}
20+
compileOnly(group: 'org.neo4j', name: 'neo4j-import-api', version: neos.'5.25') {
21+
transitive = false
22+
}
23+
compileOnly(group: 'org.neo4j', name: 'neo4j-gql-status', version: neos.'5.25') {
24+
transitive = false
25+
}
26+
27+
implementation project(':neo4j-kernel-adapter-api')
28+
}

0 commit comments

Comments
 (0)