o making the download of dependencies silent

o install the dependencies of mboot during the install


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162572 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2004-03-08 00:44:10 +00:00
parent dbacfee39a
commit 1385a661a6
3 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,6 @@
junit/jars/junit-3.8.1.jar
surefire/jars/surefire-booter-1.0.jar
surefire/jars/surefire-1.0.jar
modello/jars/modello-1.0-SNAPSHOT.jar
xpp3/jars/xpp3-1.1.3.3.jar
xstream/jars/xstream-1.0-SNAPSHOT.jar

View File

@ -14,7 +14,7 @@ downloadMBootDependencies()
if [ ! -f $repoLocal/$i ]
then
mkdir -p $repoLocal/$i > /dev/null 2>&1
wget http://www.ibiblio.org/maven/$i $repoLocal/$i
wget http://www.ibiblio.org/maven/$i $repoLocal/$i > /dev/null 2>&1
fi
done
}

View File

@ -42,6 +42,14 @@ tail +$SKIP $0 | tar xz -C $DIR
#cd $PREV
#rm -rf $WORK_DIR
. ${MBOOT_HOME}/maven.functions
echo "-------------------------------------------------------"
echo "Installing MBoot dependencies ... "
echo "-------------------------------------------------------"
downloadMBootDependencies
exit 0
__ARCHIVE_FOLLOWS__