mirror of
https://github.com/apache/maven.git
synced 2025-02-07 10:38:47 +00:00
77b3707cf9
- show only times git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162836 13f79535-47bb-0310-9956-ffa450edef68
20 lines
214 B
Bash
Executable File
20 lines
214 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf target
|
|
|
|
echo Run with ant...
|
|
|
|
time -p ant jar > /dev/null
|
|
|
|
rm -rf target
|
|
|
|
echo Run with m2...
|
|
|
|
time -p m2 jar:jar > /dev/null
|
|
|
|
rm -rf target
|
|
|
|
echo Run with maven...
|
|
|
|
time -p maven jar > /dev/null
|