mirror of
https://github.com/apache/maven.git
synced 2025-03-01 06:09:24 +00:00
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162779 13f79535-47bb-0310-9956-ffa450edef68
8 lines
271 B
Bash
Executable File
8 lines
271 B
Bash
Executable File
#!/bin/sh
|
|
|
|
repoLocal=`cat $HOME/build.properties | grep "maven.repo.local" | sed 's/^.*= *//'`
|
|
|
|
echo "Removing maven-it-support-1.0.jar from the local repository so we can verify its downloading ..."
|
|
|
|
rm -f $repoLocal/maven/jars/maven-it-support-1.0.jar > /dev/null 2>&1
|