Remove unnecessary gradle-enterprise.gradle.kts from Yoga #1817

Closed
cortinico wants to merge 1 commits from export-D76436236 into main
2 changed files with 7 additions and 23 deletions

View File

@@ -1,17 +0,0 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
// You can use this script to configure the gradleEnterprise{} block in your build.
// You need to rename this file to ./gradle/gradle-enterprise.gradle.kts in order for
// this to be processed.
extensions.getByName("gradleEnterprise").withGroovyBuilder {
setProperty("server", "https://your-gradle-enterprise-instance.example.com")
getProperty("buildScan").withGroovyBuilder {
"publishAlways"()
"tag"(if(System.getenv("CI") != null) "CI" else "Local")
}
}

View File

@@ -19,10 +19,11 @@ include(":yoga")
project(":yoga").projectDir = file("java") project(":yoga").projectDir = file("java")
rootProject.name = "yoga-github" gradleEnterprise {
buildScan {
// If you specify a file inside gradle/gradle-enterprise.gradle.kts termsOfServiceUrl = "https://gradle.com/terms-of-service"
// you can configure your custom Gradle Enterprise instance termsOfServiceAgree = "yes"
if (file("./gradle/gradle-enterprise.gradle.kts").exists()) { }
apply(from = "./gradle/gradle-enterprise.gradle.kts")
} }
rootProject.name = "yoga-github"