-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathsettings.gradle
More file actions
34 lines (31 loc) · 834 Bytes
/
settings.gradle
File metadata and controls
34 lines (31 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
pluginManagement {
repositories {
gradlePluginPortal()
maven {
name = 'Local-hosted plugins'
url = 'dependencies/plugins/repository'
}
}
}
plugins {
// Apply the foojay-resolver plugin to allow automatic download of JDKs
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
}
rootProject.name = 'okapi'
include(':okapi-api')
include(':okapi-testing')
include(':okapi-neo4j-io')
include(':okapi-neo4j-io-testing')
include(':okapi-ir')
include(':okapi-logical')
include(':okapi-relational')
include(':okapi-tck')
include(':okapi-trees')
include(':okapi-shade')
include(':morpheus-spark-cypher')
include(':morpheus-examples')
include(':morpheus-tck')
include(':morpheus-testing')
include(':morpheus-jmh')
include(':graph-ddl')
include(':documentation')