mirror of
https://github.com/apache/maven.git
synced 2025-02-07 02:29:10 +00:00
11 lines
158 B
Bash
11 lines
158 B
Bash
|
#!/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
|