Skip to content

Commit

Permalink
Merge pull request #8728 from wmontwe/update-gradle
Browse files Browse the repository at this point in the history
Bump Gradle 8.11.1 -> 8.12
  • Loading branch information
wmontwe authored Jan 9, 2025
2 parents 09a7edc + fcf6257 commit fb561e3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app-k9mail/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ dependencyGuard {
configuration("fullReleaseRuntimeClasspath")
}

tasks.create("printVersionInfo") {
tasks.register("printVersionInfo") {
val targetBuildType = project.findProperty("buildType") ?: "debug"

doLast {
Expand Down
4 changes: 2 additions & 2 deletions app-thunderbird/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ dependencyGuard {
configuration("fullReleaseRuntimeClasspath")
}

tasks.create("printConfigurations") {
tasks.register("printConfigurations") {
doLast {
configurations.forEach { configuration ->
println("Configuration: ${configuration.name}")
Expand All @@ -271,7 +271,7 @@ tasks.create("printConfigurations") {
}
}

tasks.create("printVersionInfo") {
tasks.register("printVersionInfo") {
val targetBuildType = project.findProperty("buildType") ?: "debug"
val targetFlavorName = project.findProperty("flavorName") ?: "full"

Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ detektPluginCompose = "0.4.18"
fastAdapter = "5.7.0"
forkhandlesBom = "2.20.0.0"
glide = "4.16.0"
gradle = "8.11.1"
gradle = "8.12"
http4kBom = "5.35.2.0"
icu4j = "72.1"
javaDiffUtils = "4.12"
Expand All @@ -71,7 +71,7 @@ jzlib = "1.0.7"
koinBom = "3.5.6"
kotlinBom = "2.1.0"
# Needs to match the version used by Gradle, just check with `./gradlew --version`
kotlinGradleBom = "2.0.20"
kotlinGradleBom = "2.0.21"
kotlinKsp = "2.1.0-1.0.29"
kotlinxCoroutines = "1.9.0"
kotlinxCollectionsImmutable = "0.3.8"
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.11.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 1 addition & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down

0 comments on commit fb561e3

Please sign in to comment.