Skip to content

Commit 7186909

Browse files
committed
[Gradle] Revert back to Gradle 7.6.
1 parent 3296c5e commit 7186909

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
java: [ '8', '11', '17', '20-ea' ]
31+
java: [ '8', '11', '17' ]
3232
os: [ 'ubuntu-22.04', 'windows-latest' ]
3333
steps:
3434
- name: Checkout code

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import java.security.MessageDigest
2020

2121
plugins {
2222
id 'java-library'
23-
id 'com.github.johnrengelman.shadow' version '8.1.0' apply false
23+
id 'com.github.johnrengelman.shadow' version '7.1.2' apply false
2424
id 'com.github.ben-manes.versions' version '0.46.0'
2525
}
2626

@@ -830,7 +830,7 @@ tasks.named('dependencyUpdates').configure {
830830
}
831831

832832
wrapper {
833-
gradleVersion = '8.0.1'
833+
gradleVersion = '7.6'
834834
distributionType = 'ALL'
835835
}
836836

gradle/wrapper/gradle-wrapper.jar

34 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

gradlew

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,15 +144,15 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
144144
case $MAX_FD in #(
145145
max*)
146146
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
147-
# shellcheck disable=SC3045
147+
# shellcheck disable=SC3045
148148
MAX_FD=$( ulimit -H -n ) ||
149149
warn "Could not query maximum file descriptor limit"
150150
esac
151151
case $MAX_FD in #(
152152
'' | soft) :;; #(
153153
*)
154154
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
155-
# shellcheck disable=SC3045
155+
# shellcheck disable=SC3045
156156
ulimit -n "$MAX_FD" ||
157157
warn "Could not set maximum file descriptor limit to $MAX_FD"
158158
esac

0 commit comments

Comments
 (0)