summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorMarc Cornellà <marc.cornella@live.com>2016-05-12 13:42:00 +0200
committerMarc Cornellà <marc.cornella@live.com>2016-05-12 13:42:00 +0200
commit25dddd2db4ac2dfa2d6104c308e171e0937f116f (patch)
tree7f566c4d7ec894e05a795a64f1c42166adb4eec0 /plugins
parent817889c95f12682bab8a81de3855c93ad14f1570 (diff)
parent30870d87ddc23b633fb99a6542768835c2a66551 (diff)
downloadzsh-25dddd2db4ac2dfa2d6104c308e171e0937f116f.tar.gz
zsh-25dddd2db4ac2dfa2d6104c308e171e0937f116f.tar.bz2
zsh-25dddd2db4ac2dfa2d6104c308e171e0937f116f.zip
Merge branch 'email2vimalraj/readme-for-maven'
Close #4764
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mvn/README.md32
1 files changed, 32 insertions, 0 deletions
diff --git a/plugins/mvn/README.md b/plugins/mvn/README.md
new file mode 100644
index 000000000..79192bb54
--- /dev/null
+++ b/plugins/mvn/README.md
@@ -0,0 +1,32 @@
+## Introduction
+
+The [mvn plugin](https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins/mvn) provides many
+[useful aliases](#aliases) as well as completion for the `mvn` command.
+
+Enable it by adding `mvn` to the plugins array in your zshrc file:
+```zsh
+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` |