Skip to content

Commit

Permalink
Add gradle build scan
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuckame committed May 23, 2024
1 parent 7c90993 commit 2d179b8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,24 @@ pluginManagement {
}
}

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

rootProject.name = "avro4k-core"

include("benchmark")

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

dependencyResolutionManagement {
versionCatalogs {
create("libs") {
Expand Down

0 comments on commit 2d179b8

Please sign in to comment.