Skip to content

Commit c84c97f

Browse files
committed
Add compute business facade
1 parent be80c8f commit c84c97f

File tree

8 files changed

+618
-2
lines changed

8 files changed

+618
-2
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
apply plugin: 'java-library'
2+
3+
description = 'Neo4j Graph Data Science :: Algorithms Compute Facade'
4+
5+
group = 'org.neo4j.gds'
6+
7+
dependencies {
8+
9+
implementation project(':algo') // TODO: extract the results to a separate module and depend on it
10+
implementation project(':algorithms-compute-facade')
11+
implementation project(':collections')
12+
implementation project(':core') // TODO: this is here because of the `GraphStoreCatalogService` --> refactor it so we can use the service without bringing the entire sub-project
13+
implementation project(':graph-schema-api')
14+
implementation project(':logging')
15+
implementation project(':path-finding-params')
16+
implementation project(':progress-tracking')
17+
implementation project(':string-formatting')
18+
implementation project(':termination')
19+
20+
// Test dependencies
21+
testImplementation platform(openGds.junit5bom)
22+
testImplementation openGds.assertj.core
23+
testImplementation libs.awaitility
24+
testImplementation openGds.junit5.jupiter
25+
testImplementation openGds.mockito.junit.jupiter
26+
testImplementation project(':test-utils')
27+
}

0 commit comments

Comments
 (0)