From f23c5ca7c4f8f634833faac950946c9147ec9024 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 23:36:41 +0100 Subject: [PATCH] Update Gradle Wrapper from 8.10.2 to 8.11 (#617) * Update Gradle Wrapper from 8.10.2 to 8.11 Signed-off-by: gradle-update-robot * Update Gradle API usage --------- Signed-off-by: gradle-update-robot Co-authored-by: gradle-update-robot Co-authored-by: FlorianMichael --- build.gradle | 13 +++++-------- gradle/wrapper/gradle-wrapper.properties | 4 ++-- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/build.gradle b/build.gradle index 3160b715..f2461c09 100644 --- a/build.gradle +++ b/build.gradle @@ -109,7 +109,7 @@ processResources { expand( "version": project.version, "description": project.description, - "implVersion": "git-${project.name}-${project.version}:${latestCommitHash()}", + "implVersion": "git-${project.name}-${project.version}:${latestCommitHash().get()}", "mcVersion": mcVersion() ) } @@ -123,13 +123,10 @@ String mcVersion() { } } -String latestCommitHash() { - def stdout = new ByteArrayOutputStream() - exec { - commandLine "git", "rev-parse", "--short", "HEAD" - standardOutput = stdout - } - return stdout.toString().trim() +Provider latestCommitHash() { + return providers.exec { + commandLine = ["git", "rev-parse", "--short", "HEAD"] + }.standardOutput.getAsText().map(String::trim) } java { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index fb602ee2..82dd18b2 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,7 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionSha256Sum=31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26 -distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip +distributionSha256Sum=57dafb5c2622c6cc08b993c85b7c06956a2f53536432a30ead46166dbca0f1e9 +distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME