Add convenience script for aliasing gradlew and mvn

OS X Bash users may source gradle/aliases.sh and it will set up a
aliases for gradlew and mvn that run the commands through the 'time'
utility.  This makes for apples-to-apples execution time comparisons.
This commit is contained in:
Chris Beams
2010-07-29 11:58:19 +02:00
parent 45eb34e85a
commit 6f3a8f17de

2
gradle/aliases.sh Executable file
View File

@@ -0,0 +1,2 @@
alias gradle="time $PWD/gradlew"
alias mvn="time mvn"