Blame view

plugins/mvn/README.md 1.83 KB
d9bebbb3c   mj   Squashed 'repos/r...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  ## 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`                 |
  | `mvncisto`           | `mvn clean install -DskipTests --offline`       |
  | `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`   |