o little script to run through different versions of maven

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@393392 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-04-12 05:53:35 +00:00
parent 37448483a3
commit eec4495d73
1 changed files with 10 additions and 0 deletions

10
maven-core-it/it0091/run.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/sh
m2Versions="2.0.1 2.0.2 2.0.3 2.0.4"
for i in $m2Versions
do
echo "Testing against version $i"
M2_HOME=$HOME/maven-${i}
mvn clean test
done