mirror of
https://github.com/apache/maven.git
synced 2025-02-06 18:18:48 +00:00
26d36d8959
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
20 lines
217 B
Bash
Executable File
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
|