This is an automated email from the ASF dual-hosted git repository. vladimirsitnikov pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jmeter.git
commit e52305d6a4a867ad96e374fadeffe0b67e514894 Author: Vladimir Sitnikov <[email protected]> AuthorDate: Sat Apr 29 16:41:44 2023 +0300 chore: use proper junit5 dependencies so the jupiter engine is added to test runtime classpath --- build-logic/jvm/src/main/kotlin/build-logic.test-junit5.gradle.kts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build-logic/jvm/src/main/kotlin/build-logic.test-junit5.gradle.kts b/build-logic/jvm/src/main/kotlin/build-logic.test-junit5.gradle.kts index 135f4da52f..de1a35b40c 100644 --- a/build-logic/jvm/src/main/kotlin/build-logic.test-junit5.gradle.kts +++ b/build-logic/jvm/src/main/kotlin/build-logic.test-junit5.gradle.kts @@ -24,8 +24,7 @@ plugins { dependencies { testImplementation("junit:junit") - testImplementation("org.junit.jupiter:junit-jupiter-api") - testImplementation("org.junit.jupiter:junit-jupiter-params") + testImplementation("org.junit.jupiter:junit-jupiter") testImplementation("org.hamcrest:hamcrest") testRuntimeOnly("org.junit.vintage:junit-vintage-engine") }
