maven/maven-core-it/it2002/test.sh

35 lines
789 B
Bash
Executable File

#!/bin/bash
rm -Rf target
mkdir target
svnadmin create --fs-type fsfs target/svnroot
dir=`readlink -f ${PWD}`
if [ "$1" == "windows" ]; then
dir=`cygpath -m $dir`
echo setting dir to $dir
fi
svn import project file://localhost/${dir}/target/svnroot/trunk/project -m "import."
svn mkdir file://localhost/${dir}/target/svnroot/tags -m "Creating tags dir."
svn co file://localhost/${dir}/target/svnroot/trunk/project target/project.checkout
cd target/project.checkout
cat pom.xml | sed "s#\${project.file.parentFile.parentFile}#$dir#g" >tmp
mv tmp pom.xml
svn ci -m 'update scm' pom.xml
rm -Rf target
m2 -e release:prepare -Denv=test -B -Dtag=test-tag
ret=$?; if [ $ret != 0 ]; then exit $ret; fi
m2 -e release:perform -Denv=test
ret=$?; if [ $ret != 0 ]; then exit $ret; fi