o little hack to chop up the ITs when needed

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@467842 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-26 02:46:20 +00:00
parent b19663375b
commit 32c927f962
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#!/bin/sh
for i in `ls Maven*.java`
do
name=`echo $i | sed 's/Maven//' | sed 's/Test.java//' | tr A-Z a-z`
sed "s/core-it:touch/org.apache.maven.its.plugins:maven-it-plugin-touch:touch/" $i > $i.new
#sed "s/verifier.assertArtifactPresent( \"org.apache.maven\", \"maven-it-it/verifier.assertArtifactPresent( \"org.apache.maven.its.$name\", \"maven-it-it/" $i > $i.new
mv $i.new $i
done