Bump org.junit:junit-bom from 5.9.3 to 5.10.0 (#5646)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jack Berg <jberg@newrelic.com>
This commit is contained in:
dependabot[bot] 2023-08-03 18:15:37 -05:00 committed by GitHub
parent a9b285de3b
commit d38970886b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -23,7 +23,7 @@ val DEPENDENCY_BOMS = listOf(
"io.zipkin.brave:brave-bom:5.16.0",
"io.zipkin.reporter2:zipkin-reporter-bom:2.16.4",
"org.assertj:assertj-bom:3.24.2",
"org.junit:junit-bom:5.9.3",
"org.junit:junit-bom:5.10.0",
"org.testcontainers:testcontainers-bom:1.18.3",
"org.snakeyaml:snakeyaml-engine:2.6"
)

View File

@ -21,8 +21,10 @@ dependencies {
graalvmNative {
binaries {
named("main") {
verbose.set(true)
named("test") {
// Required as of junit 5.10.0: https://junit.org/junit5/docs/5.10.0/release-notes/#deprecations-and-breaking-changes
buildArgs.add("--initialize-at-build-time=org.junit.platform.launcher.core.LauncherConfig")
buildArgs.add("--initialize-at-build-time=org.junit.jupiter.engine.config.InstantiatingConfigurationParameterConverter")
}
}
toolchainDetection.set(false)