mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
mvn: add initialize support in mvn completion
This commit is contained in:
parent
e056aee794
commit
35539fd6e4
1 changed files with 2 additions and 1 deletions
|
@ -53,6 +53,7 @@ mvn-color() {
|
||||||
alias mvn="mvn-or-mvnw"
|
alias mvn="mvn-or-mvnw"
|
||||||
|
|
||||||
# aliases
|
# aliases
|
||||||
|
alias mvncini='mvn clean initialize'
|
||||||
alias mvncie='mvn clean install eclipse:eclipse'
|
alias mvncie='mvn clean install eclipse:eclipse'
|
||||||
alias mvnci='mvn clean install'
|
alias mvnci='mvn clean install'
|
||||||
alias mvncist='mvn clean install -DskipTests'
|
alias mvncist='mvn clean install -DskipTests'
|
||||||
|
@ -81,7 +82,7 @@ alias mvndocs='mvn dependency:resolve -Dclassifier=javadoc'
|
||||||
function listMavenCompletions {
|
function listMavenCompletions {
|
||||||
reply=(
|
reply=(
|
||||||
# common lifecycle
|
# common lifecycle
|
||||||
clean process-resources compile process-test-resources test-compile test integration-test package verify install deploy site
|
clean initialize process-resources compile process-test-resources test-compile test integration-test package verify install deploy site
|
||||||
|
|
||||||
# common plugins
|
# common plugins
|
||||||
deploy failsafe install site surefire checkstyle javadoc jxr pmd ant antrun archetype assembly dependency enforcer gpg help release repository source eclipse idea jetty cargo jboss tomcat tomcat6 tomcat7 exec versions war ear ejb android scm buildnumber nexus repository sonar license hibernate3 liquibase flyway gwt
|
deploy failsafe install site surefire checkstyle javadoc jxr pmd ant antrun archetype assembly dependency enforcer gpg help release repository source eclipse idea jetty cargo jboss tomcat tomcat6 tomcat7 exec versions war ear ejb android scm buildnumber nexus repository sonar license hibernate3 liquibase flyway gwt
|
||||||
|
|
Loading…
Reference in a new issue