Skip to content

Commit

Permalink
Merge pull request #9851 from vnickolov/gradle-8.11
Browse files Browse the repository at this point in the history
Update Gradle to v8.11
  • Loading branch information
vnickolov authored Nov 19, 2024
2 parents 55dc73f + 48c0a1c commit 30fb0f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
4 changes: 2 additions & 2 deletions gradle/checkstyle.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ if (shouldCheckstyle) {
reports {
xml {
setRequired(false)
destination file("${checkstyleReportsDir}/xml/${fileName}.xml")
setOutputLocation(file("${checkstyleReportsDir}/xml/${fileName}.xml"))
}
html {
// Disable HTML reports by default, TeamCity would make use only of the XML ones.
// Keeping this here for local checks/investigation.
setRequired(true)
destination file("${checkstyleReportsDir}/html/${fileName}.html")
setOutputLocation(file("${checkstyleReportsDir}/html/${fileName}.html"))
stylesheet resources.text.fromFile("$publicDir/etc/checkstyle/xsl/checkstyle-simple.xsl")
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 30fb0f6

Please sign in to comment.