Unverified Commit e93a2dca authored by Geoffrey GREBERT's avatar Geoffrey GREBERT Committed by GitHub
Browse files

mvn: add Quarkus support in mvn completion (#9037)


Co-authored-by: default avatarGeoffrey GREBERT <ggrebert@sii.fr>
parent 2abe4d6a
...@@ -19,6 +19,7 @@ if it's found, or the mvn command otherwise. ...@@ -19,6 +19,7 @@ if it's found, or the mvn command otherwise.
| `mvn!` | `mvn -f <root>/pom.xml` | | `mvn!` | `mvn -f <root>/pom.xml` |
| `mvnag` | `mvn archetype:generate` | | `mvnag` | `mvn archetype:generate` |
| `mvnboot` | `mvn spring-boot:run` | | `mvnboot` | `mvn spring-boot:run` |
| `mvnqdev` | `mvn quarkus:dev` |
| `mvnc` | `mvn clean` | | `mvnc` | `mvn clean` |
| `mvncd` | `mvn clean deploy` | | `mvncd` | `mvn clean deploy` |
| `mvnce` | `mvn clean eclipse:clean eclipse:eclipse` | | `mvnce` | `mvn clean eclipse:clean eclipse:eclipse` |
......
...@@ -62,6 +62,7 @@ alias mvne='mvn eclipse:eclipse' ...@@ -62,6 +62,7 @@ alias mvne='mvn eclipse:eclipse'
alias mvnfmt='mvn fmt:format' alias mvnfmt='mvn fmt:format'
alias mvnjetty='mvn jetty:run' alias mvnjetty='mvn jetty:run'
alias mvnp='mvn package' alias mvnp='mvn package'
alias mvnqdev='mvn quarkus:dev'
alias mvns='mvn site' alias mvns='mvn site'
alias mvnsrc='mvn dependency:sources' alias mvnsrc='mvn dependency:sources'
alias mvnt='mvn test' alias mvnt='mvn test'
...@@ -184,6 +185,8 @@ function listMavenCompletions { ...@@ -184,6 +185,8 @@ function listMavenCompletions {
tomee:run tomee:run-war tomee:run-war-only tomee:stop tomee:deploy tomee:undeploy tomee:run tomee:run-war tomee:run-war-only tomee:stop tomee:deploy tomee:undeploy
# spring-boot # spring-boot
spring-boot:run spring-boot:repackage spring-boot:run spring-boot:repackage
# quarkus
quarkus:dev quarkus:list-extensions quarkus:add-extension quarkus:add-extensions quarkus:generate-config quarkus:help
# exec # exec
exec:exec exec:java exec:exec exec:java
# versions # versions
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment