1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-11 00:10:08 +00:00

mvn: add alias to run maven from a project's subdirectory

This commit is contained in:
Bryan Banz 2014-10-22 12:09:53 -05:00 committed by Marc Cornellà
parent 283dcab64f
commit 0a5e69b87e

View file

@ -54,6 +54,9 @@ mvn-color() {
# either use orignal mvn oder the mvn wrapper
alias mvn="mvn-or-mvnw"
# Run mvn against the pom found in a project's root directory (assumes a git repo)
alias 'mvn!'='mvn -f $(git rev-parse --show-toplevel 2>/dev/null || echo ".")/pom.xml'
# aliases
alias mvncini='mvn clean initialize'
alias mvncie='mvn clean install eclipse:eclipse'