mirror of
https://github.com/apache/maven.git
synced 2025-02-08 11:05:37 +00:00
10 lines
381 B
Plaintext
10 lines
381 B
Plaintext
|
#!/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
|