diff --git a/build.gradle.kts b/build.gradle.kts index 5ad51b5..83b5ac2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,4 +1,4 @@ -val junitJupiterVersion = "5.10.2" +val junitJupiterVersion = "5.11.3" val jacksonVersion = "2.16.1" val kafkaVersion = "3.6.1" @@ -33,9 +33,8 @@ dependencies { api("com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonVersion") api("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jacksonVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:$junitJupiterVersion") - testImplementation("org.junit.jupiter:junit-jupiter-params:$junitJupiterVersion") - testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitJupiterVersion") + testImplementation("org.junit.jupiter:junit-jupiter:$junitJupiterVersion") + testRuntimeOnly("org.junit.platform:junit-platform-launcher") } kotlin {