Skip to content

Commit

Permalink
Migrate Gradle Enterprise to Develocity
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman committed Apr 22, 2024
1 parent ccebc6f commit 419d943
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ pluginManagement {

plugins {
// to report build results back to gradle.org
id "com.gradle.enterprise" version "3.17.2"
id 'com.gradle.develocity' version '3.17.2'
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
}

gradleEnterprise {
develocity {
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
termsOfUseUrl = 'https://gradle.com/terms-of-service'
termsOfUseAgree = 'yes'

publishAlwaysIf(System.getenv("GRADLE_BUILD_SCAN") == 'true')
publishing.onlyIf { System.getenv("GRADLE_BUILD_SCAN") == 'true' }
}
}

rootProject.name = 'htmlSanityCheck'

include 'htmlSanityCheck-core',
'htmlSanityCheck-gradle-plugin'
include('htmlSanityCheck-core')
include('htmlSanityCheck-gradle-plugin')

0 comments on commit 419d943

Please sign in to comment.