You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by vl...@apache.org on 2023/04/29 13:42:32 UTC

[jmeter] 01/02: chore: use proper junit5 dependencies so the jupiter engine is added to test runtime classpath

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 <si...@gmail.com>
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")
 }