From 7f8d9df76dc4b714fa01fcd323cd2bc09d80c465 Mon Sep 17 00:00:00 2001 From: "Alexander.Likhachev" Date: Wed, 23 Aug 2023 18:57:04 +0200 Subject: [PATCH] [Build] Use the latest JUnit engine for kotlin-test-junit5 tests This change aligns with the intention in 634279621d987a4799e768d697747f312a09b25b, however the "latest" version wasn't synced with other "latest" versions within the repo #KTI-1349 In Progress --- gradle/verification-metadata.xml | 30 ----------------------- libraries/kotlin.test/junit5/build.gradle | 2 +- 2 files changed, 1 insertion(+), 31 deletions(-) diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml index c429b0a901f..ffd8415ce86 100644 --- a/gradle/verification-metadata.xml +++ b/gradle/verification-metadata.xml @@ -4437,12 +4437,6 @@ - - - - - - @@ -4461,12 +4455,6 @@ - - - - - - @@ -4497,12 +4485,6 @@ - - - - - - @@ -4521,12 +4503,6 @@ - - - - - - @@ -4661,12 +4637,6 @@ - - - - - - diff --git a/libraries/kotlin.test/junit5/build.gradle b/libraries/kotlin.test/junit5/build.gradle index 12a4089f4de..246eaae23a8 100644 --- a/libraries/kotlin.test/junit5/build.gradle +++ b/libraries/kotlin.test/junit5/build.gradle @@ -17,7 +17,7 @@ dependencies { api project(':kotlin-test:kotlin-test-jvm') api("org.junit.jupiter:junit-jupiter-api:5.0.0") - testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.2.0") + testRuntimeOnly(libs.junit.jupyter.engine) } jar {