forked from neo4j-contrib/neo4j-apoc-procedures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
27 lines (24 loc) · 1.05 KB
/
settings.gradle
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
rootProject.name = 'apoc'
include("extended")
include ':core', ':common', ':processor', ':test-utils'
project(':core').projectDir = new File(rootDir, 'apoc-core/core')
project(':common').projectDir = new File(rootDir, 'apoc-core/common')
project(':processor').projectDir = new File(rootDir, 'apoc-core/processor')
project(':test-utils').projectDir = new File(rootDir, 'apoc-core/test-utils')
startParameter.excludedTaskNames = [
':core:build',
':common:build',
':processor:build',
':test-utils:build',
':core:test',
':common:test',
':processor:test',
':test-utils:test',
':core:publish',
':common:publish',
':test-utils:publish',
// the :core:shadowJar should be used only for integration tests with both core and extended jars
// e.g. StartupExtendedTest, where the core jar is created by executing `shadowJar` directly in the `apoc-core`
// not when a `gradle shadow` or a `gradle build` is executed in this root project folder
':core:shadowJar'
]