From d2ead928ff0e6158bce4c7167ed90425af969359 Mon Sep 17 00:00:00 2001 From: Svante Schubert Date: Mon, 28 Nov 2022 11:57:35 +0100 Subject: [PATCH] Exchange JUnit4 with JUnit5 vintage as JUnit5 allows the ordering the excecution of test classes --- Mustang-CLI/pom.xml | 12 +++++++++--- library/pom.xml | 14 ++++++++++---- validator/pom.xml | 14 ++++++++++---- 3 files changed, 29 insertions(+), 11 deletions(-) diff --git a/Mustang-CLI/pom.xml b/Mustang-CLI/pom.xml index f40d7838..fd6e0e33 100644 --- a/Mustang-CLI/pom.xml +++ b/Mustang-CLI/pom.xml @@ -39,9 +39,15 @@ 0.3.0 - junit - junit - 4.13.1 + org.junit.jupiter + junit-jupiter-api + 5.9.1 + test + + + org.junit.vintage + junit-vintage-engine + 5.9.1 test diff --git a/library/pom.xml b/library/pom.xml index db8d8ed4..2b10504b 100644 --- a/library/pom.xml +++ b/library/pom.xml @@ -86,11 +86,17 @@ 2.1.3 - junit - junit - 4.13.1 + org.junit.jupiter + junit-jupiter-api + 5.9.1 test - + + + org.junit.vintage + junit-vintage-engine + 5.9.1 + test + diff --git a/validator/pom.xml b/validator/pom.xml index ee0c0f3f..5193c1b4 100644 --- a/validator/pom.xml +++ b/validator/pom.xml @@ -113,11 +113,17 @@ 0.3.0 - junit - junit - 4.13.1 + org.junit.jupiter + junit-jupiter-api + 5.9.1 test - + + + org.junit.vintage + junit-vintage-engine + 5.9.1 + test +