Brett Leslie Porter 26d36d8959 PR: MNG-140
split artifact impl from api so that dep resolution can be used independently of wagon
only the first step in making maven-artifact more useful as a public api - more changes to be made


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@191634 13f79535-47bb-0310-9956-ffa450edef68
2005-06-21 06:49:49 +00:00

20 lines
217 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 -B package > /dev/null
rm -rf target
echo Run with maven...
time -p maven jar > /dev/null