ohmyzsh/plugins/mvn
Shang Yehua 587ec8f959 Add mvn options to ignore test failures
add "-Dmaven.test.failure.ignore=true" .
This option will not ignore all tests but ignore the failures when run tests.
2016-05-14 10:04:38 +08:00
..
mvn.plugin.zsh Add mvn options to ignore test failures 2016-05-14 10:04:38 +08:00
README.md Reword and fix formatting of mvn plugin README 2016-05-12 13:41:29 +02:00

Introduction

The mvn plugin provides many useful aliases as well as completion for the mvn command.

Enable it by adding mvn to the plugins array in your zshrc file:

plugins=(... mvn)

Aliases

Alias Command
mvncie mvn clean install eclipse:eclipse
mvnci mvn clean install
mvncist mvn clean install -DskipTests
mvne mvn eclipse:eclipse
mvnd mvn deploy
mvnp mvn package
mvnc mvn clean
mvncom mvn compile
mvnct mvn clean test
mvnt mvn test
mvnag mvn archetype:generate
mvn-updates mvn versions:display-dependency-updates
mvntc7 mvn tomcat7:run
mvnjetty mvn jetty:run
mvndt mvn dependency:tree
mvns mvn site
mvnsrc mvn dependency:sources
mvndocs mvn dependency:resolve -Dclassifier=javadoc