|
#!/bin/sh
|
|
|
|
repoLocal=`cat $HOME/maven.properties | grep "maven.repo.local" | sed 's/^.*= *//'`
|
|
|
|
echo "Removing maven-core-it0004-1.0.pom from the local repository so we can verify pom installation ..."
|
|
|
|
rm -f $repoLocal/maven/poms/maven-core-it0004-1.0.pom > /dev/null 2>&1
|