Skip to content

Commit

Permalink
remove maven logs logging
Browse files Browse the repository at this point in the history
olenagerasimova committed Dec 13, 2023
1 parent 3f036d5 commit dbf6ecc
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -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,

0 comments on commit dbf6ecc

Please sign in to comment.