-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsettings.gradle
101 lines (72 loc) · 2.92 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
pluginManagement {
includeBuild("views/gradle-plugin")
}
plugins {
id 'com.gradle.develocity' version '3.19'
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2'
}
def isCI = System.getenv('CI') != null
def isLocal = !isCI
def isAuthenticated = System.getenv('DEVELOCITY_ACCESS_KEY') != null
develocity {
server = 'https://ge.grails.org'
buildScan {
tag('grails')
tag('grails-views')
publishing.onlyIf { isAuthenticated }
uploadInBackground = isLocal
}
}
buildCache {
local { enabled = isLocal }
remote(develocity.buildCache) {
push = isCI && isAuthenticated
enabled = true
}
}
rootProject.name = 'grails-views'
include 'views-core'
project(':views-core').projectDir = file('views/core')
include 'views-json'
project(':views-json').projectDir = file('views/json')
include 'views-docs'
project(':views-docs').projectDir = file('views/docs')
include 'views-json-testing-support'
project(':views-json-testing-support').projectDir = file('views/json-testing-support')
include 'views-markup'
project(':views-markup').projectDir = file('views/markup')
include 'views-examples-functional-tests'
project(':views-examples-functional-tests').projectDir = file('views/examples/functional-tests')
include 'views-examples-functional-tests-plugin'
project(':views-examples-functional-tests-plugin').projectDir = file('views/examples/functional-tests-plugin')
include 'scaffolding'
include 'fields-plugin'
project(':fields-plugin').projectDir = file('fields/plugin')
include 'fields-docs'
project(':fields-docs').projectDir = file('fields/docs')
include 'gsp-docs'
project(':gsp-docs').projectDir = file('gsp/docs')
include 'grails-gsp'
project(':grails-gsp').projectDir = file('gsp/grails-gsp')
include 'grails-plugin-gsp'
project(':grails-plugin-gsp').projectDir = file('gsp/grails-plugin-gsp')
include 'grails-plugin-sitemesh3'
project(':grails-plugin-sitemesh3').projectDir = file('gsp/grails-plugin-sitemesh3')
include 'grails-taglib'
project(':grails-taglib').projectDir = file('gsp/grails-taglib')
include 'grails-web-gsp'
project(':grails-web-gsp').projectDir = file('gsp/grails-web-gsp')
include 'grails-web-gsp-taglib'
project(':grails-web-gsp-taglib').projectDir = file('gsp/grails-web-gsp-taglib')
include 'grails-web-jsp'
project(':grails-web-jsp').projectDir = file('gsp/grails-web-jsp')
include 'grails-web-taglib'
project(':grails-web-taglib').projectDir = file('gsp/grails-web-taglib')
include 'grails-web-testing-support'
project(':grails-web-testing-support').projectDir = file('gsp/grails-web-testing-support')
include 'gsp-examples-sitemesh3'
project(':gsp-examples-sitemesh3').projectDir = file('gsp/examples/sitemesh3')
include 'grails-gsp-spring-boot'
project(':grails-gsp-spring-boot').projectDir = file('gsp/grails-gsp-spring-boot')
include 'gsp-examples-spring-boot'
project(':gsp-examples-spring-boot').projectDir = file('gsp/examples/spring-boot/app')