Skip to content

Commit 8b5119b

Browse files
authored
Upgrade gradle version to 8.0.1 (#6656)
* Update Gradle Wrapper from 7.6 to 8.0.1. * Add foojay-toolchains plugin * Remove test-support dependency
1 parent 7f709cb commit 8b5119b

File tree

13 files changed

+11
-14
lines changed

13 files changed

+11
-14
lines changed

core/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ dependencies {
104104
testImplementation files('testlib/repo/fakejar/fakejar/0/fakejar-0.jar')
105105

106106
testImplementation 'org.assertj:assertj-core:3.24.2'
107-
testImplementation project(':test-support')
108107

109108
jarFileTestCompileOnly "org.projectlombok:lombok:${lombok.version}"
110109
jarFileTestAnnotationProcessor "org.projectlombok:lombok:${lombok.version}"
34 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=7ba68c54029790ab444b39d7e293d3236b2632631fb5f2e012bb28b4ff669e4b
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
3+
distributionSha256Sum=1b6b558be93f29438d3df94b7dfee02e794b94d9aca4611a92cdb79b6b88e909
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-bin.zip
55
networkTimeout=10000
66
zipStoreBase=GRADLE_USER_HOME
77
zipStorePath=wrapper/dists

examples/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

gradle/wrapper/gradle-wrapper.jar

34 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=312eb12875e1747e05c2f81a4789902d7e4ec5defbd1eefeaccc08acf096505d
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
3+
distributionSha256Sum=948d1e4ccc2f6ae36cbfa087d827aaca51403acae5411e664a6000bb47946f22
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-all.zip
55
networkTimeout=10000
66
zipStoreBase=GRADLE_USER_HOME
77
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

modules/hivemq/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ compileTestJava {
3535
javaCompiler = javaToolchains.compilerFor {
3636
languageVersion = JavaLanguageVersion.of(11)
3737
}
38+
options.release.set(11)
3839
}

modules/jdbc-test/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
dependencies {
22
api project(':jdbc')
3-
api project(':test-support')
43

54
api 'com.google.guava:guava:31.1-jre'
65
api 'org.apache.commons:commons-lang3:3.12.0'

modules/jdbc/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ description = "Testcontainers :: JDBC"
22

33
dependencies {
44
api project(':database-commons')
5-
testImplementation project(':test-support')
65

76
compileOnly 'org.jetbrains:annotations:24.0.0'
87
testImplementation 'commons-dbutils:commons-dbutils:1.7'

0 commit comments

Comments
 (0)