Skip to content

Commit

Permalink
Update quarkus-plugin.version as part of quarkus update
Browse files Browse the repository at this point in the history
This is only useful for projects created a looooong time ago but it is
an easy fix.

(cherry picked from commit 331bca0)
  • Loading branch information
gsmet committed Aug 26, 2023
1 parent fe1bba7 commit 9765460
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public static FetchResult createRecipe(MessageWriter log, Path target, MavenArti
switch (request.buildTool) {
case MAVEN:
recipe.addOperation(new UpdatePropertyOperation("quarkus.platform.version", request.targetVersion))
.addOperation(new UpdatePropertyOperation("quarkus.version", request.targetVersion));
.addOperation(new UpdatePropertyOperation("quarkus.version", request.targetVersion))
.addOperation(new UpdatePropertyOperation("quarkus-plugin.version", request.targetVersion));
if (request.kotlinVersion != null) {
recipe.addOperation(new UpdatePropertyOperation("kotlin.version", request.kotlinVersion));
}
Expand Down

0 comments on commit 9765460

Please sign in to comment.