-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8329 from s1ck/decouple-cypher-projection
Refactor Cypher Projection into its own module
- Loading branch information
Showing
45 changed files
with
190 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
apply plugin: 'java-library' | ||
|
||
description = 'Neo4j Graph Data Science :: Graph Construction' | ||
group = 'org.neo4j.gds' | ||
|
||
dependencies { | ||
annotationProcessor project(':annotations') | ||
annotationProcessor group: 'org.immutables', name: 'builder', version: ver.'immutables' | ||
annotationProcessor group: 'org.immutables', name: 'value', version: ver.'immutables' | ||
annotationProcessor group: 'org.neo4j', name: 'annotations', version: ver.'neo4j' | ||
|
||
compileOnly group: 'org.immutables', name: 'builder', version: ver.'immutables' | ||
compileOnly group: 'org.immutables', name: 'value-annotations', version: ver.'immutables' | ||
compileOnly group: 'org.jetbrains', name: 'annotations', version: ver.'jetbrains-annotations' | ||
|
||
implementation project(':annotations') | ||
// implementation project(':config-api') | ||
implementation project(':core') | ||
// implementation project(':core-utils') | ||
implementation project(':graph-schema-api') | ||
// implementation project(':memory-usage') | ||
// implementation project(':progress-tracking') | ||
// implementation project(':string-formatting') | ||
// implementation project(':transaction') | ||
|
||
// implementation group: 'org.openjdk.jol', name: 'jol-core', version: ver.'jol' | ||
// implementation group: 'org.opencypher', name: 'cypher-javacc-parser-9.0', version: ver.'opencypher-front-end', transitive: false | ||
// implementation group: 'org.hdrhistogram', name: 'HdrHistogram', version: ver.'HdrHistogram' | ||
|
||
testAnnotationProcessor project(':annotations') | ||
|
||
testCompileOnly group: 'org.immutables', name: 'value-annotations', version: ver.'immutables' | ||
testCompileOnly group: 'org.immutables', name: 'builder', version: ver.'immutables' | ||
testCompileOnly group: 'org.jetbrains', name: 'annotations', version: ver.'jetbrains-annotations' | ||
testCompileOnly group: 'com.github.spotbugs', name: 'spotbugs-annotations', version: ver.'spotbugsToolVersion' | ||
|
||
testImplementation project(':test-utils') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
apply plugin: 'java-library' | ||
|
||
description = 'Neo4j Graph Data Science :: Cypher Projection' | ||
group = 'org.neo4j.gds' | ||
|
||
dependencies { | ||
annotationProcessor project(':annotations') | ||
annotationProcessor project(':config-generator') | ||
annotationProcessor group: 'org.immutables', name: 'builder', version: ver.'immutables' | ||
annotationProcessor group: 'org.immutables', name: 'value', version: ver.'immutables' | ||
annotationProcessor group: 'org.neo4j', name: 'annotations', version: ver.'neo4j' | ||
|
||
compileOnly group: 'org.immutables', name: 'value-annotations', version: ver.'immutables' | ||
compileOnly group: 'org.jetbrains', name: 'annotations', version: ver.'jetbrains-annotations' | ||
|
||
neodeps().each { | ||
compileOnly(group: 'org.neo4j', name: it, version: ver.'neo4j') { | ||
transitive = false | ||
} | ||
} | ||
|
||
implementation project(':annotations') | ||
implementation project(':config-api') | ||
implementation project(':core') | ||
implementation project(':graph-schema-api') | ||
implementation project(':memory-usage') | ||
implementation project(':progress-tracking') | ||
implementation project(':string-formatting') | ||
implementation project(':transaction') | ||
|
||
|
||
implementation group: 'org.openjdk.jol', name: 'jol-core', version: ver.'jol' | ||
implementation group: 'org.opencypher', name: 'cypher-javacc-parser-9.0', version: ver.'opencypher-front-end', transitive: false | ||
implementation group: 'org.hdrhistogram', name: 'HdrHistogram', version: ver.'HdrHistogram' | ||
|
||
testAnnotationProcessor project(':annotations') | ||
|
||
testCompileOnly group: 'org.immutables', name: 'value-annotations', version: ver.'immutables' | ||
testCompileOnly group: 'org.immutables', name: 'builder', version: ver.'immutables' | ||
testCompileOnly group: 'org.jetbrains', name: 'annotations', version: ver.'jetbrains-annotations' | ||
testCompileOnly group: 'com.github.spotbugs', name: 'spotbugs-annotations', version: ver.'spotbugsToolVersion' | ||
|
||
testImplementation project(':executor') | ||
testImplementation project(':test-utils') | ||
testImplementation project(':proc-catalog') | ||
testImplementation project(':proc-community') | ||
testImplementation project(':test-graph-loaders') | ||
|
||
testImplementation group: 'org.neo4j', name: 'neo4j-cypher-dsl', version: ver.'cypher-dsl' | ||
|
||
testImplementation project(':opengds-extension') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.