Skip to content

Commit

Permalink
feat: add gradle scan dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ImaginativeShohag committed Jan 15, 2025
1 parent 6fcfe7a commit a012ab9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ dependencyResolutionManagement {
plugins {
// See https://jmfayard.github.io/refreshVersions
id("de.fayard.refreshVersions") version "0.60.5"

// See https://docs.gradle.com/develocity/gradle-plugin/current/
id("com.gradle.develocity").version("3.19")
}

refreshVersions {
Expand All @@ -36,6 +39,14 @@ refreshVersions {
}
}

develocity {
buildScan {
termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use")
termsOfUseAgree.set("yes")
publishing.onlyIf { it.buildResult.failures.isNotEmpty() }
}
}

rootProject.name = "Why Not Compose!"
include(":app")
include(":base")
Expand Down

0 comments on commit a012ab9

Please sign in to comment.