From dbf6ecc353c127897925b9eac3c10338ae3fb230 Mon Sep 17 00:00:00 2001 From: olenagerasimova Date: Wed, 13 Dec 2023 16:59:36 +0300 Subject: [PATCH] remove maven logs logging --- .../transport/http3/ArtipieAndPluginFromCentralIT.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/mvn-resolver-transport-http3/src/test/java/com/artipie/aether/transport/http3/ArtipieAndPluginFromCentralIT.java b/mvn-resolver-transport-http3/src/test/java/com/artipie/aether/transport/http3/ArtipieAndPluginFromCentralIT.java index b4802b0..fe780c3 100644 --- a/mvn-resolver-transport-http3/src/test/java/com/artipie/aether/transport/http3/ArtipieAndPluginFromCentralIT.java +++ b/mvn-resolver-transport-http3/src/test/java/com/artipie/aether/transport/http3/ArtipieAndPluginFromCentralIT.java @@ -25,9 +25,6 @@ */ public class ArtipieAndPluginFromCentralIT { - private static final Logger LOGGER = - LoggerFactory.getLogger(ArtipieAndPluginFromCentralIT.class); - private GenericContainer mavenClient; private GenericContainer artipie; @@ -82,7 +79,6 @@ void buildsWithMavenProfile() throws IOException, InterruptedException { "mvn", "install", "-X", "-DskipTests", "-s", "settings.xml", "-Daether.connector.https.securityMode=insecure" ); String res = String.join("\n", exec.getStdout(), exec.getStderr()); - LOGGER.info(res); MatcherAssert.assertThat("Maven install status is not successful", exec.getExitCode() == 0); MatcherAssert.assertThat( res, @@ -107,7 +103,6 @@ void buildsWithPomRepo() throws IOException, InterruptedException { "mvn", "install", "-X", "-Daether.connector.https.securityMode=insecure" ); String res = String.join("\n", exec.getStdout(), exec.getStderr()); - LOGGER.info(res); MatcherAssert.assertThat("Maven install status is not successful", exec.getExitCode() == 0); MatcherAssert.assertThat( res, @@ -137,7 +132,6 @@ void buildsWithPomPluginRepo() throws IOException, InterruptedException { "mvn", "install", "-X", "-Daether.connector.https.securityMode=insecure" ); String res = String.join("\n", exec.getStdout(), exec.getStderr()); - LOGGER.info(res); MatcherAssert.assertThat("Maven install status is not successful", exec.getExitCode() == 0); MatcherAssert.assertThat( res,