0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/mvn
Paul N. Baker 745b6550a6 mvn: run mvnw only if executable (#7326)
The problem that can occur is ocassionally mvnw will not be executable. This can happen if mvnw is included from an archetype, as unix permissions aren't preserved within the jar they're stored in. Only using mvnw if it exists AND is executable
2018-10-24 17:41:05 +02:00
..
mvn.plugin.zsh mvn: run mvnw only if executable (#7326) 2018-10-24 17:41:05 +02:00
README.md Added 'clean verify' to the mvn plugin targets (#6339) 2017-11-01 06:21:49 -07: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
mvncisto mvn clean install -DskipTests --offline
mvne mvn eclipse:eclipse
mvncv mvn clean verify
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