Skip to content

Commit

Permalink
Merge pull request #347 from jglick/errors
Browse files Browse the repository at this point in the history
Pass `--errors` to Maven invocations
  • Loading branch information
raul-arabaolaza authored Feb 22, 2022
2 parents 7c0e8c6 + 8727ffa commit da54c65
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ public void run(Config config, File baseDirectory, File buildLogFile, String...
cmd.add(mvn != null ? mvn.getAbsolutePath() : "mvn");
cmd.add("--show-version");
cmd.add("--batch-mode");
cmd.add("--errors");
cmd.add(DISABLE_DOWNLOAD_LOGS);
if (config.userSettingsFile != null) {
cmd.add("--settings=" + config.userSettingsFile);
Expand Down

0 comments on commit da54c65

Please sign in to comment.