Skip to content

Commit

Permalink
build publishes scans to ge.gradle.org
Browse files Browse the repository at this point in the history
  • Loading branch information
eskatos committed Mar 27, 2024
1 parent 74e80cd commit 3b7e88c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal {
content {
includeGroupAndSubgroups("com.gradle")
includeGroupAndSubgroups("io.github.gradle")
}
}
}
}

plugins {
id("com.gradle.enterprise") version "3.16.2"
id("io.github.gradle.gradle-enterprise-conventions-plugin") version "0.9.1"
}

gradleEnterprise {
buildScan {
val isCI = System.getenv("CI").let { ci ->
ci != null && !ci.equals("false", ignoreCase = true)
}
publishAlwaysIf(isCI)
}
}

Expand Down

0 comments on commit 3b7e88c

Please sign in to comment.