File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,6 @@ grailsVersion=5.1.8
44grailsGradlePluginVersion =5.1.4
55groovyVersion =3.0.5
66mongodbJavaDriverVersion =4.0.3
7+ org.gradle.parallel =true
8+ org.gradle.caching =true
9+ org.gradle.daemon =true
Original file line number Diff line number Diff line change 1- rootProject. name= " embedded-mongodb"
1+ plugins {
2+ id " com.gradle.enterprise" version " 3.8.1"
3+ id ' com.gradle.common-custom-user-data-gradle-plugin' version ' 1.6.3'
4+ }
5+
6+ rootProject. name= " embedded-mongodb"
7+
8+ gradleEnterprise {
9+ server = ' https://ge.grails.org'
10+ buildScan {
11+ publishAlways()
12+ publishIfAuthenticated()
13+ uploadInBackground = System . getenv(" CI" ) == null
14+ capture {
15+ taskInputFiles = true
16+ }
17+ }
18+ }
19+
20+ buildCache {
21+ local { enabled = System . getenv(' CI' ) != ' true' }
22+ remote(HttpBuildCache ) {
23+ push = System . getenv(' CI' ) == ' true'
24+ enabled = true
25+ url = ' https://ge.grails.org/cache/'
26+ credentials {
27+ username = System . getenv(' GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER' )
28+ password = System . getenv(' GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY' )
29+ }
30+ }}
You can’t perform that action at this time.
0 commit comments