Skip to content

Commit dbf6ecc

Browse files
remove maven logs logging
1 parent 3f036d5 commit dbf6ecc

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

mvn-resolver-transport-http3/src/test/java/com/artipie/aether/transport/http3/ArtipieAndPluginFromCentralIT.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
*/
2626
public class ArtipieAndPluginFromCentralIT {
2727

28-
private static final Logger LOGGER =
29-
LoggerFactory.getLogger(ArtipieAndPluginFromCentralIT.class);
30-
3128
private GenericContainer<?> mavenClient;
3229

3330
private GenericContainer<?> artipie;
@@ -82,7 +79,6 @@ void buildsWithMavenProfile() throws IOException, InterruptedException {
8279
"mvn", "install", "-X", "-DskipTests", "-s", "settings.xml", "-Daether.connector.https.securityMode=insecure"
8380
);
8481
String res = String.join("\n", exec.getStdout(), exec.getStderr());
85-
LOGGER.info(res);
8682
MatcherAssert.assertThat("Maven install status is not successful", exec.getExitCode() == 0);
8783
MatcherAssert.assertThat(
8884
res,
@@ -107,7 +103,6 @@ void buildsWithPomRepo() throws IOException, InterruptedException {
107103
"mvn", "install", "-X", "-Daether.connector.https.securityMode=insecure"
108104
);
109105
String res = String.join("\n", exec.getStdout(), exec.getStderr());
110-
LOGGER.info(res);
111106
MatcherAssert.assertThat("Maven install status is not successful", exec.getExitCode() == 0);
112107
MatcherAssert.assertThat(
113108
res,
@@ -137,7 +132,6 @@ void buildsWithPomPluginRepo() throws IOException, InterruptedException {
137132
"mvn", "install", "-X", "-Daether.connector.https.securityMode=insecure"
138133
);
139134
String res = String.join("\n", exec.getStdout(), exec.getStderr());
140-
LOGGER.info(res);
141135
MatcherAssert.assertThat("Maven install status is not successful", exec.getExitCode() == 0);
142136
MatcherAssert.assertThat(
143137
res,

0 commit comments

Comments
 (0)