-
Notifications
You must be signed in to change notification settings - Fork 14
/
settings.gradle
52 lines (44 loc) · 1.68 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.2"
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
}}
include 'app1'
include 'app2'
include 'app3'
include 'datasources'
include 'namespaces'
include 'gorm'
include 'issue-698-domain-save-npe'
include 'hyphenated'
include 'issue-views-182'
include 'issue-11102'
//include 'micronaut' micronaut has been removed from Grails can be restored based on https://micronaut-projects.github.io/micronaut-spring/latest/guide/#springBootStarter
include 'loadfirst'
project(':loadfirst').projectDir = new File('plugins/loadfirst')
include 'loadsecond'
project(':loadsecond').projectDir = new File('plugins/loadsecond')
include 'loadafter'
project(':loadafter').projectDir = new File('plugins/loadafter')
include 'issue11005'
project(':issue11005').projectDir = new File('plugins/issue11005')
//include 'issue-11767' micronaut has been removed from Grails can be restored based on https://micronaut-projects.github.io/micronaut-spring/latest/guide/#springBootStarter
//include 'issue-11767-plugin'
//project(':issue-11767-plugin').projectDir = new File('plugins/issue-11767-plugin')