Skip to content

Commit

Permalink
Enable Gradle build scans (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
0x6675636b796f75676974687562 authored Mar 2, 2023
1 parent 67267e5 commit 5bb4f40
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,24 @@ dependencyResolutionManagement {
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}

plugins {
id("com.gradle.enterprise") version "3.12.3"
}

gradleEnterprise {
if (System.getenv("CI") != null) {
buildScan {
publishAlways()
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
}

0 comments on commit 5bb4f40

Please sign in to comment.