Skip to content

Commit e5404a6

Browse files
Merge branch '1.0.x' into 1.1.x
2 parents ae205bc + a6d8010 commit e5404a6

File tree

7 files changed

+11
-8
lines changed

7 files changed

+11
-8
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ nexusPublishing {
303303
}
304304

305305
wrapper {
306-
gradleVersion = '8.10'
306+
gradleVersion = '8.13'
307307
}
308308

309309
defaultTasks 'build'

context-propagation/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ plugins {
55
dependencies {
66
compileOnly libs.slf4j
77

8-
testImplementation 'org.junit.jupiter:junit-jupiter'
8+
testImplementation libs.junitJupiter
9+
testRuntimeOnly libs.junitPlatformLauncher
910
testImplementation libs.assertj
1011
testImplementation libs.slf4j
1112
testImplementation libs.logback

docs/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ repositories {
2424
dependencies {
2525
implementation project(':context-propagation')
2626

27-
testImplementation 'org.junit.jupiter:junit-jupiter'
27+
testImplementation libs.junitJupiter
28+
testRuntimeOnly libs.junitPlatformLauncher
2829
testImplementation libs.assertj
2930
}
3031

gradle/libs.versions.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ assertj = "3.24.2"
33
mockito = "5.7.0"
44
javaFormatForPlugins = "0.0.43"
55
jsr305 = "3.0.2"
6-
junit = "5.10.4"
6+
junit = "5.12.1"
77
slf4j = "2.0.17"
88
logback = "1.4.14"
99

@@ -12,6 +12,8 @@ assertj = { module = "org.assertj:assertj-core", version.ref = "assertj" }
1212
javaFormatForPlugins = { module = "io.spring.javaformat:spring-javaformat-checkstyle", version.ref = "javaFormatForPlugins" }
1313
jsr305 = { module = "com.google.code.findbugs:jsr305", version.ref = "jsr305" }
1414
junitBom = { module = "org.junit:junit-bom", version.ref = "junit" }
15+
junitJupiter = { module = "org.junit.jupiter:junit-jupiter" }
16+
junitPlatformLauncher = { module = "org.junit.platform:junit-platform-launcher" }
1517
mockitoCore = { module = "org.mockito:mockito-core", version.ref = "mockito" }
1618
slf4j = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
1719
logback = { module = "ch.qos.logback:logback-classic", version.ref = "logback" }

gradle/wrapper/gradle-wrapper.jar

122 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

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.10-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum
@@ -206,7 +205,7 @@ fi
206205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
207206

208207
# Collect all arguments for the java command:
209-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
210209
# and any embedded shellness will be escaped.
211210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
212211
# treated as '${Hostname}' itself on the command line.

0 commit comments

Comments
 (0)