blob: e336fc50463378f324938e118a4005414f80a05f [file]
plugins {
id "com.gradle.enterprise" version "3.10.3"
id 'com.gradle.common-custom-user-data-gradle-plugin' version '1.7.2'
}
gradleEnterprise {
server = 'https://ge.grails.org'
buildScan {
publishAlways()
publishIfAuthenticated()
uploadInBackground = System.getenv("CI") == null
capture {
taskInputFiles = true
}
}
}
buildCache {
local { enabled = System.getenv('CI') != 'true' }
remote(HttpBuildCache) {
push = System.getenv('CI') == 'true'
enabled = true
url = 'https://ge.grails.org/cache/'
credentials {
username = System.getenv('GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER')
password = System.getenv('GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY')
}
}}
rootProject.name = "grails-gradle-plugin"