mirror of https://github.com/apache/maven.git
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:
parent
dbacfee39a
commit
1385a661a6
|
@ -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
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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__
|
||||
|
|
Loading…
Reference in New Issue