-
Notifications
You must be signed in to change notification settings - Fork 10
/
settings.gradle
53 lines (41 loc) · 1.59 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
plugins {
id "com.gradle.enterprise" version "3.17.1"
id 'com.gradle.common-custom-user-data-gradle-plugin' version '1.13'
}
gradleEnterprise {
server = 'https://ge.grails.org'
buildScan {
publishAlwaysIf(System.getenv('CI') == 'true')
publishIfAuthenticated()
uploadInBackground = System.getenv("CI") == null
capture {
taskInputFiles = true
}
}
}
buildCache {
local { enabled = System.getenv('CI') != 'true' }
remote(gradleEnterprise.buildCache) {
def isAuthenticated = System.getenv('GRADLE_ENTERPRISE_ACCESS_KEY')
push = System.getenv('CI') == 'true' && isAuthenticated
enabled = true
}}
// core
include "grails-datastore-gorm-neo4j"
// plugins
include "boot-plugin"
include 'grails-plugin'
// documentation
include 'docs'
// examples
include 'examples-grails3-neo4j'
project(":examples-grails3-neo4j").projectDir = new File(settingsDir, "examples/grails3-neo4j")
include 'examples-grails3-neo4j-hibernate'
project(":examples-grails3-neo4j-hibernate").projectDir = new File(settingsDir, "examples/grails3-neo4j-hibernate")
include 'examples-neo4j-standalone'
project(":examples-neo4j-standalone").projectDir = new File(settingsDir, "examples/neo4j-standalone")
include 'examples-neo4j-spring-boot'
project(":examples-neo4j-spring-boot").projectDir = new File(settingsDir, "examples/neo4j-spring-boot")
include 'examples-test-data-service'
project(":examples-test-data-service").projectDir = new File(settingsDir, "examples/test-data-service")
findProject(':boot-plugin').name = 'gorm-neo4j-spring-boot'