17 lines
408 B
Kotlin
17 lines
408 B
Kotlin
plugins {
|
|
id("com.gradle.enterprise").version("3.1.1")
|
|
}
|
|
|
|
gradleEnterprise {
|
|
buildScan {
|
|
link("GitHub", "https://github.com/ethauvin/semver-gradle/tree/master")
|
|
if ("true" == System.getenv("CI")) {
|
|
publishOnFailure()
|
|
tag("CI")
|
|
}
|
|
termsOfServiceUrl = "https://gradle.com/terms-of-service"
|
|
termsOfServiceAgree = "yes"
|
|
}
|
|
}
|
|
|
|
rootProject.name = "semver"
|