mirror of
https://github.com/apache/maven.git
synced 2025-02-07 10:38:47 +00:00
c13e8c7629
remove maven.properties use everywhere except classworlds conf git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163024 13f79535-47bb-0310-9956-ffa450edef68
62 lines
1.2 KiB
Bash
Executable File
62 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# This process assumes that maven-core-it-verifier has been built.
|
|
|
|
home=`pwd`
|
|
|
|
cp=../../maven-core-it-verifier/target/maven-core-it-verifier-1.0.jar
|
|
|
|
verifier=org.apache.maven.it.Verifier
|
|
|
|
integration_tests=`cat integration-tests.txt | egrep -v '^#'`
|
|
|
|
# TODO: this is rubbish. Let's rewrite this in java
|
|
local_repo=`cat $HOME/.m2/pom.xml | tr '\n' ' ' | sed 's/^.*<local> *<repository>//' | sed 's#</repository> *</local>.*$##'`
|
|
|
|
for i in "$@"
|
|
do
|
|
j=`echo $i | sed 's/^-Dmaven.repo.local=//'`
|
|
if [ "$i" != "$j" ]; then
|
|
local_repo=$j
|
|
fi
|
|
done
|
|
|
|
for integration_test in $integration_tests
|
|
do
|
|
(
|
|
cd $integration_test
|
|
|
|
if [ -f prebuild.hook ]
|
|
then
|
|
echo
|
|
sh prebuild.hook "$local_repo"
|
|
echo
|
|
fi
|
|
|
|
m2 -Dmaven.repo.local="$local_repo" clean:clean `cat goals.txt`
|
|
|
|
if [ -f postbuild.hook ]
|
|
then
|
|
echo
|
|
sh postbuild.hook
|
|
echo
|
|
fi
|
|
|
|
basedir=.
|
|
|
|
java -cp "$cp" $verifier "$basedir" "$local_repo"
|
|
) > ${integration_test}-log.txt
|
|
|
|
if [ "$?" = "0" ]
|
|
then
|
|
echo "Integration test $integration_test OK"
|
|
else
|
|
echo "Integration test $integration_test FAILED!"
|
|
echo "Details:"
|
|
cat ${integration_test}-log.txt
|
|
echo
|
|
fi
|
|
|
|
done
|
|
|