Skip to content

Commit

Permalink
Bump Gradle wrapper config
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellix committed Dec 22, 2024
1 parent decf6c7 commit fe583be
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,14 @@ nexusPublishing {

//project.apply("debug.gradle.kts")

// https://gradle.org/release-checksums/
// Updating the Gradle Wrapper:
// ./gradlew wrapper --gradle-version=8.12 --distribution-type=bin --gradle-distribution-sha256-sum=7a00d51fb93147819aab76024feece20b6b84e420694101f276be952e08bef03
// https://gradle.org/whats-new/gradle-8/
// releases: https://gradle.org/releases/
// sha265 checksum reference: https://gradle.org/release-checksums/
// verifying the Gradle Wrapper JAR: https://docs.gradle.org/current/userguide/gradle_wrapper.html#wrapper_checksum_verification
tasks.wrapper {
gradleVersion = "8.11.1"
gradleVersion = "8.12"
distributionType = Wrapper.DistributionType.BIN
distributionSha256Sum = "f397b287023acdba1e9f6fc5ea72d22dd63669d59ed4a289a29b1a76eee151c6"
distributionSha256Sum = "7a00d51fb93147819aab76024feece20b6b84e420694101f276be952e08bef03"
}

0 comments on commit fe583be

Please sign in to comment.