Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ commons-codec = { strictly = "[1.13, 2[", prefer = "1.16.0" }
compile-testing = "0.5.1"
icu = "75.1"
junit = "5.10.2"
junit-platform = "1.10.1"
logback = "1.5.6"
mockk = "1.13.13"
rxjava = "3.1.8"
Expand Down Expand Up @@ -89,6 +90,7 @@ spring-webflux = { group = "org.springframework", name = "spring-webflux", versi
spring-context = { group = "org.springframework", name = "spring-context", version.ref = "spring" }
fastjson2 = { group = "com.alibaba.fastjson2", name = "fastjson2-kotlin", version.ref = "fastjson2" }
fastjson2-spring = { group = "com.alibaba.fastjson2", name = "fastjson2-extension-spring6", version.ref = "fastjson2" }
junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher", version.ref = "junit-platform" }

# security vulnerabilities overrides
commons-codec = { group = "commons-codec", name = "commons-codec", version.ref = "commons-codec" }
Expand Down
2 changes: 1 addition & 1 deletion integration/graalvm/maven-graalvm-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ tasks {
val mavenEnvironmentVariables = mapOf(
"graphqlKotlinVersion" to project.ext["version"],
"graphqlJavaVersion" to libs.versions.graphql.java.get(),
"junitVersion" to libs.versions.junit.get(),
"junitVersion" to libs.versions.junit.asProvider().get(),
"kotlinJvmTarget" to kotlinJvmVersion,
"kotlinVersion" to libs.versions.kotlin.get(),
"ktorVersion" to libs.versions.ktor.get(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ tasks {
"kotlinxSerializationVersion" to libs.versions.kotlinx.serialization.get(),
"ktorVersion" to libs.versions.ktor.get(),
"reactorVersion" to libs.versions.reactor.core.get(),
"junitVersion" to libs.versions.junit.get()
"junitVersion" to libs.versions.junit.asProvider().get()
)
var wireMockServer: WireMockServerRunner? = null
var wireMockServerPort: Int? = null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ testing {
val integrationTest by registering(JvmTestSuite::class) {
dependencies {
implementation(project())
implementation(libs.junit.platform.launcher)
}

targets {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ testing {
val integrationTest by registering(JvmTestSuite::class) {
dependencies {
implementation(project())
implementation(libs.junit.platform.launcher)
}

targets {
Expand Down
Loading