mirror of https://github.com/apache/maven.git
10 lines
381 B
Bash
10 lines
381 B
Bash
#!/bin/sh
|
|
|
|
repoLocal=`cat $HOME/build.properties | grep "maven.repo.local" | sed 's/^.*= *//'`
|
|
|
|
echo "Removing maven-core-it0005-1.0.pom from the local repository so we can verify pom installation ..."
|
|
|
|
rm -f $repoLocal/maven/poms/maven-core-it0005-1.0-SNAPSHOT.pom > /dev/null 2>&1
|
|
|
|
rm -f $repoLocal/maven/poms/maven-core-it0005-1.0-SNAPSHOT.pom.snapshot-version > /dev/null 2>&1
|