mirror of https://github.com/apache/maven.git
8 lines
271 B
Bash
Executable File
8 lines
271 B
Bash
Executable File
#!/bin/sh
|
|
|
|
repoLocal=`cat $HOME/maven.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
|