mirror of
https://github.com/apache/maven.git
synced 2025-02-08 11:05:37 +00:00
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162714 13f79535-47bb-0310-9956-ffa450edef68
24 lines
452 B
Bash
Executable File
24 lines
452 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This process assumes that maven-core-it-verifier has been built.
|
|
|
|
home=`pwd`
|
|
|
|
cp=`pwd`/../maven-core-it-verifier/target/maven-core-it-verifier-1.0.jar
|
|
verifier=org.apache.maven.it.Verifier
|
|
|
|
integration_tests=`cat integration-tests.txt`
|
|
|
|
for integration_test in $integration_tests
|
|
do
|
|
echo "Running integration test $integration_test ..."
|
|
|
|
(
|
|
cd $integration_test
|
|
|
|
m2 clean jar
|
|
|
|
java -cp $cp $verifier `pwd`
|
|
)
|
|
done
|