-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
67 lines (49 loc) · 2.32 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
plugins {
id "com.gradle.enterprise" version "3.18.1"
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2'
}
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-hibernate6"
// Documentation
include 'docs'
// Plugins
include "boot-plugin"
include 'grails-plugin'
include "examples-grails-hibernate"
project(":examples-grails-hibernate").projectDir = new File(settingsDir, "examples/grails-hibernate")
include "examples-grails-multiple-datasources"
project(":examples-grails-multiple-datasources").projectDir = new File(settingsDir, "examples/grails-multiple-datasources")
include "examples-grails-database-per-tenant"
project(":examples-grails-database-per-tenant").projectDir = new File(settingsDir, "examples/grails-database-per-tenant")
include "examples-grails-schema-per-tenant"
project(":examples-grails-schema-per-tenant").projectDir = new File(settingsDir, "examples/grails-schema-per-tenant")
include "examples-grails-partitioned-multi-tenancy"
project(":examples-grails-partitioned-multi-tenancy").projectDir = new File(settingsDir, "examples/grails-partitioned-multi-tenancy")
include "examples-standalone-hibernate"
project(":examples-standalone-hibernate").projectDir = new File(settingsDir, "examples/standalone-hibernate")
include "examples-spring-boot-hibernate"
project(":examples-spring-boot-hibernate").projectDir = new File(settingsDir, "examples/spring-boot-hibernate")
include "examples-grails-data-service"
project(":examples-grails-data-service").projectDir = new File(settingsDir, "examples/grails-data-service")
include "examples-grails-hibernate-groovy-proxy"
project(":examples-grails-hibernate-groovy-proxy").projectDir = new File(settingsDir, "examples/grails-hibernate-groovy-proxy")
findProject(':boot-plugin').name = 'gorm-hibernate6-spring-boot'