From 22f4f9ef503de1a143d8d761b1e5ff303514c9ac Mon Sep 17 00:00:00 2001 From: Eno Compton Date: Sun, 13 Oct 2024 16:13:07 -0600 Subject: [PATCH] chore: upgrade and specify all JUnit transitive dependencies This resolves the error we're seeing in our nightly GraalVM builds: TestEngine with ID 'junit-jupiter' failed to discover tests It also pulls in the latest JUnit dependencies. Fixes #585 --- pom.xml | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index b4734ece..13f748bb 100644 --- a/pom.xml +++ b/pom.xml @@ -269,12 +269,32 @@ org.junit.platform junit-platform-engine - 1.10.3 + 1.11.2 org.junit.platform junit-platform-commons - 1.10.3 + 1.11.2 + + + org.junit.jupiter + junit-jupiter + 5.11.2 + + + org.junit.jupiter + junit-jupiter-api + 5.11.2 + + + org.junit.jupiter + junit-jupiter-params + 5.11.2 + + + org.junit.jupiter + junit-jupiter-engine + 5.11.2 @@ -283,7 +303,7 @@ org.junit.vintage junit-vintage-engine - 5.10.3 + 5.11.2 test