Files
yoga/settings.gradle.kts
Nicola Corti 91029c27d2 Remove unnecessary gradle-enterprise.gradle.kts from Yoga
Summary: This file is not really necessary. As we don't have a Gradle Enterprise instance anymore, let's just remove it and inline it.

Differential Revision: D76436236
2025-06-11 10:21:47 -07:00

30 lines
578 B
Plaintext

/*
* 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.
*/
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
google()
}
}
plugins { id("com.gradle.enterprise").version("3.7.1") }
include(":yoga")
project(":yoga").projectDir = file("java")
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
rootProject.name = "yoga-github"