Skip to content

Commit

Permalink
Merge pull request quarkusio#34092 from maxandersen/qrunwithgradle
Browse files Browse the repository at this point in the history
quarkus run now works with gradle
  • Loading branch information
maxandersen authored Jun 16, 2023
2 parents 4902a74 + 999a9b1 commit a7e4d28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/cli/src/main/java/io/quarkus/cli/Run.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public class Run extends BuildToolDelegatingCommand {

private static final Map<BuildTool, String> ACTION_MAPPING = Map.of(BuildTool.MAVEN, "quarkus:run",
BuildTool.GRADLE, "run");
BuildTool.GRADLE, "quarkusRun");

@CommandLine.Option(names = { "--target" }, description = "Run target.")
String target;
Expand Down

0 comments on commit a7e4d28

Please sign in to comment.