diff options
author | Fredrik Appelberg <fredrik.appelberg@gmail.com> | 2010-12-01 09:56:54 +0100 |
---|---|---|
committer | Fredrik Appelberg <fredrik.appelberg@gmail.com> | 2010-12-01 09:56:54 +0100 |
commit | d02a3912cfd52636ad547fe0b1357303b77584a8 (patch) | |
tree | b69033926a0614b3e443561c349eeadcaf0239a6 | |
parent | 583c984a864969579a0c258528ae93f9529308d4 (diff) | |
download | zsh-d02a3912cfd52636ad547fe0b1357303b77584a8.tar.gz zsh-d02a3912cfd52636ad547fe0b1357303b77584a8.tar.bz2 zsh-d02a3912cfd52636ad547fe0b1357303b77584a8.zip |
maven plugin
-rw-r--r-- | plugins/mvn/mvn.plugin.zsh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/mvn/mvn.plugin.zsh b/plugins/mvn/mvn.plugin.zsh new file mode 100644 index 000000000..abd0da185 --- /dev/null +++ b/plugins/mvn/mvn.plugin.zsh @@ -0,0 +1,6 @@ +function listMavenCompletions { + reply=( + cli:execute cli:execute-phase archetype:generate compile clean install test test-compile deploy package cobertura:cobertura jetty:run gwt:run gwt:debug -DskipTests -Dmaven.test.skip=true -DarchetypeCatalog=http://tapestry.formos.com/maven-snapshot-repository -Dtest= `if [ -d ./src ] ; then find ./src -type f | grep -v svn | sed 's?.*/\([^/]*\)\..*?-Dtest=\1?' ; fi`); +} + +compctl -K listMavenCompletions mvn
\ No newline at end of file |