Skip to content

Commit

Permalink
quarkus update - Execute Maven commands in batch mode
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Nov 30, 2023
1 parent c6ad1fb commit 553c361
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ private static void propagateSystemPropertyIfSet(String name, List<String> comma
private static List<String> getMavenProcessSourcesCommand(String mvnBinary) {
List<String> command = new ArrayList<>();
command.add(mvnBinary);
command.add("-B");
command.add("clean");
command.add("process-sources");
final String mavenSettings = getMavenSettingsArg();
Expand All @@ -148,6 +149,7 @@ private static List<String> getMavenUpdateCommand(String mvnBinary, String rewri
boolean dryRun) {
final List<String> command = new ArrayList<>();
command.add(mvnBinary);
command.add("-B");
command.add("-e");
command.add(
String.format("%s:%s:%s:%s", MAVEN_REWRITE_PLUGIN_GROUP, MAVEN_REWRITE_PLUGIN_ARTIFACT, rewritePluginVersion,
Expand Down

0 comments on commit 553c361

Please sign in to comment.