Skip to content

Commit 999a9b1

Browse files
committed
fix: quarkus run now works with gradle
1 parent 388cdf9 commit 999a9b1

File tree

1 file changed

+1
-1
lines changed
  • devtools/cli/src/main/java/io/quarkus/cli

1 file changed

+1
-1
lines changed

devtools/cli/src/main/java/io/quarkus/cli/Run.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
public class Run extends BuildToolDelegatingCommand {
1010

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

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

0 commit comments

Comments
 (0)