From 37aa3d8ce4a8a9997fa49f3622e9375606d81d1f Mon Sep 17 00:00:00 2001 From: Sergio Freire Date: Mon, 5 Feb 2024 11:29:07 +0000 Subject: [PATCH 1/2] fix junit 4 dep and cleaned up other deps --- pom.xml | 73 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 36 insertions(+), 37 deletions(-) diff --git a/pom.xml b/pom.xml index e7e0439..378c23f 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ app.getxray xray-junit-extensions jar - 0.7.0 + 0.7.1 xray-junit-extensions Improvements for JUnit that allow you to take better advantage of JUnit 5 (jupiter engine) whenever using it together with Xray Test Management. https://github.com/Xray-App/xray-junit-extensions @@ -44,10 +44,10 @@ - 5.7.1 - 4.13.2 - 1.7.1 + 5.10.2 + 4.3.1 1.7.25 + 3.6.0 @@ -64,47 +64,62 @@ --> - - - 3.6.0 - + + + + org.junit + junit-bom + ${junit.version} + pom + import + + + org.mockito + mockito-bom + ${mockito.version} + pom + import + + + + org.junit.jupiter junit-jupiter-api - ${junit-jupiter.version} org.junit.jupiter junit-jupiter-params - ${junit-jupiter.version} + test org.junit.jupiter junit-jupiter-engine - ${junit-jupiter.version} + test org.junit.platform - junit-platform-suite-api - ${junit-platform.version} + junit-platform-reporting org.junit.platform - junit-platform-reporting - ${junit-platform.version} + junit-platform-launcher org.junit.platform - junit-platform-launcher - ${junit-platform.version} + junit-platform-engine + + + org.junit.platform + junit-platform-commons org.junit.platform - junit-platform-runner - ${junit-platform.version} + junit-platform-testkit + test org.assertj @@ -118,27 +133,11 @@ 1.6.2 test - org.mockito - mockito-junit-jupiter - 3.8.0 + mockito-core test - - - org.junit.platform - junit-platform-testkit - 1.7.1 - test - - + From f8979f3da91813664a25379ce31b8c18d3316e51 Mon Sep 17 00:00:00 2001 From: Sergio Freire Date: Mon, 5 Feb 2024 11:32:07 +0000 Subject: [PATCH 2/2] bump version on readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 11d1ba8..5de7497 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Add the following dependency to your pom.xml: app.getxray xray-junit-extensions - 0.7.0 + 0.7.1 test ```