diff --git a/settings.gradle.kts b/settings.gradle.kts index 17da48b7182..c98c6e61d00 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -9,10 +9,6 @@ pluginManagement { } } -plugins { - id("com.gradle.enterprise") version "3.18.1" -} - dependencyResolutionManagement { repositories { mavenCentral() @@ -20,19 +16,6 @@ dependencyResolutionManagement { } } -val isCI = System.getenv("CI") != null -gradleEnterprise { - buildScan { - termsOfServiceUrl = "https://gradle.com/terms-of-service" - termsOfServiceAgree = "yes" - - if (isCI) { - publishAlways() - tag("CI") - } - } -} - rootProject.name = "ApplicationInsights-Java" val buildNative = System.getProperty("ai.etw.native.build") != null && Os.isFamily(Os.FAMILY_WINDOWS)