Skip to content

Commit

Permalink
Merge pull request #41121 from gsmet/rewrite-outdated-config
Browse files Browse the repository at this point in the history
Avoid using outdated OpenRewrite config in quarkus update
  • Loading branch information
gastaldi committed Jun 11, 2024
2 parents 79c5ac6 + 634a851 commit 3ab88f5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ private static List<String> getMavenUpdateCommand(String mvnBinary, String rewri
command.add(
String.format("%s:%s:%s:%s", MAVEN_REWRITE_PLUGIN_GROUP, MAVEN_REWRITE_PLUGIN_ARTIFACT, rewritePluginVersion,
dryRun ? "dryRun" : "run"));
command.add(String.format("-DplainTextMasks=%s", ADDITIONAL_SOURCE_FILES));
command.add(String.format("-Drewrite.plainTextMasks=%s", ADDITIONAL_SOURCE_FILES));
command.add(String.format("-Drewrite.configLocation=%s", recipe.toAbsolutePath()));
command.add(String.format("-Drewrite.recipeArtifactCoordinates=%s", recipesGAV));
command.add(String.format("-DactiveRecipes=%s", RECIPE_IO_QUARKUS_OPENREWRITE_QUARKUS));
command.add(String.format("-Drewrite.activeRecipes=%s", RECIPE_IO_QUARKUS_OPENREWRITE_QUARKUS));
command.add("-Drewrite.pomCacheEnabled=false");
final String mavenSettings = getMavenSettingsArg();
if (mavenSettings != null) {
Expand Down

0 comments on commit 3ab88f5

Please sign in to comment.