From 890c8727605c23c2e23f12a6f396374b09ed953a Mon Sep 17 00:00:00 2001 From: Guillaume Nodet Date: Thu, 14 Jan 2021 15:15:29 +0100 Subject: [PATCH] Remove old junit dependency --- daemon/pom.xml | 6 ++++++ .../test/java/org/mvndaemon/mvnd/it/JUnitPlatformTest.java | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/daemon/pom.xml b/daemon/pom.xml index 427f530a..07a6cd60 100644 --- a/daemon/pom.xml +++ b/daemon/pom.xml @@ -53,6 +53,12 @@ org.codehaus.plexus plexus-interactivity-api 1.0 + + + junit + junit + + diff --git a/integration-tests/src/test/java/org/mvndaemon/mvnd/it/JUnitPlatformTest.java b/integration-tests/src/test/java/org/mvndaemon/mvnd/it/JUnitPlatformTest.java index bbe28a92..c9ebbce4 100644 --- a/integration-tests/src/test/java/org/mvndaemon/mvnd/it/JUnitPlatformTest.java +++ b/integration-tests/src/test/java/org/mvndaemon/mvnd/it/JUnitPlatformTest.java @@ -23,7 +23,7 @@ import org.mvndaemon.mvnd.client.DaemonParameters; import org.mvndaemon.mvnd.common.Message; import org.mvndaemon.mvnd.junit.MvndTest; -import static junit.framework.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertTrue; @MvndTest(projectDir = "src/test/projects/junit-platform") public class JUnitPlatformTest {