mirror of https://github.com/apache/maven.git
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:
parent
b19663375b
commit
32c927f962
|
@ -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
|
Loading…
Reference in New Issue