diff --git a/integration-tests/src/test/java/org/mvndaemon/mvnd/it/NewManagedModuleNativeIT.java b/integration-tests/src/test/java/org/mvndaemon/mvnd/it/NewManagedModuleNativeIT.java index 21e6897f1..fe605e0a6 100644 --- a/integration-tests/src/test/java/org/mvndaemon/mvnd/it/NewManagedModuleNativeIT.java +++ b/integration-tests/src/test/java/org/mvndaemon/mvnd/it/NewManagedModuleNativeIT.java @@ -52,7 +52,7 @@ void upgrade() throws IOException, InterruptedException { final Client cl = clientFactory.newClient(parameters.cd(parentDir)); { final TestClientOutput output = new TestClientOutput(); - cl.execute(output, "clean", "install", "-e", "-B", "-ntp").assertSuccess(); + cl.execute(output, "clean", "install", "-X", "-B", "-ntp").assertSuccess(); } assertDaemonRegistrySize(1); @@ -82,7 +82,7 @@ void upgrade() throws IOException, InterruptedException { /* Build again */ { final TestClientOutput output = new TestClientOutput(); - cl.execute(output, "clean", "install", "-e", "-B", "-ntp") + cl.execute(output, "clean", "install", "-X", "-B", "-ntp") .assertSuccess(); } assertDaemonRegistrySize(1);