Skip to content

Commit a3a6a92

Browse files
committed
feat:update gradle 8.8
Signed-off-by: Chen Kai <281165273grape@gmail.com>
1 parent 6865d34 commit a3a6a92

5 files changed

Lines changed: 28 additions & 27 deletions

File tree

gradle/wrapper/gradle-wrapper.jar

-18.2 KB
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-rc-4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
44
networkTimeout=10000
5+
validateDistributionUrl=true
56
zipStoreBase=GRADLE_USER_HOME
67
zipStorePath=wrapper/dists

gradlew

Lines changed: 13 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hildr-utilities/build.gradle

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -114,20 +114,16 @@ dependencies {
114114
implementation "com.aayushatharva.brotli4j:brotli4j:$brotliVersion"
115115
runtimeOnly("""com.aayushatharva.brotli4j:native-${
116116
if (operatingSystem.isWindows())
117-
if (currentArchitecture.isX86_64()) "windows-x86_64"
117+
if (currentArchitecture.isAmd64()) "windows-x86_64"
118118
else if (currentArchitecture.isArm()) "windows-aarch64"
119119
else
120120
throw new IllegalStateException("Unsupported architecture: ${currentArchitecture.getName()}");
121121
else if (operatingSystem.isMacOsX())
122122
if (currentArchitecture.isArm()) "osx-aarch64"
123123
else "osx-x86_64"
124124
else if (operatingSystem.isLinux())
125-
if (currentArchitecture.isAARCH64()) "linux-aarch64"
126-
else if (currentArchitecture.isX86_64()) "linux-x86_64"
127-
else if (currentArchitecture.isARM_V7()) "linux-armv7"
128-
else if (currentArchitecture.isPPC64LE()) "linux-ppc64le"
129-
else if (currentArchitecture.isS390X()) "linux-s390x"
130-
else if (currentArchitecture.isRISCV64()) "linux-riscv64"
125+
if (currentArchitecture.isArm()) "linux-aarch64"
126+
else if (currentArchitecture.isAmd64()) "linux-x86_64"
131127
else
132128
throw new IllegalStateException("Unsupported architecture: ${currentArchitecture.getName()}");
133129
else

0 commit comments

Comments
 (0)