mirror of
https://github.com/apache/maven.git
synced 2025-02-08 11:05:37 +00:00
459ea80166
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162895 13f79535-47bb-0310-9956-ffa450edef68
8 lines
274 B
Bash
Executable File
8 lines
274 B
Bash
Executable File
#!/bin/sh
|
|
|
|
repoLocal=`cat $HOME/maven.properties | grep "maven.repo.local" | sed 's/^.*= *//'`
|
|
|
|
echo "Removing maven-core-it0003-1.0.jar from the local repository so we can verify jar installation ..."
|
|
|
|
rm -f $repoLocal/maven/jars/maven-core-it0003-1.0.jar > /dev/null 2>&1
|