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
|
junit/jars/junit-3.8.1.jar
|
||||||
surefire/jars/surefire-booter-1.0.jar
|
surefire/jars/surefire-booter-1.0.jar
|
||||||
surefire/jars/surefire-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 ]
|
if [ ! -f $repoLocal/$i ]
|
||||||
then
|
then
|
||||||
mkdir -p $repoLocal/$i > /dev/null 2>&1
|
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
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
@ -160,7 +160,7 @@ buildMavenProject()
|
||||||
# $2 == jar name
|
# $2 == jar name
|
||||||
# $3 == flag to install
|
# $3 == flag to install
|
||||||
# $4 == flag to leave mboot files
|
# $4 == flag to leave mboot files
|
||||||
|
|
||||||
(
|
(
|
||||||
home=`pwd`
|
home=`pwd`
|
||||||
|
|
||||||
|
|
|
@ -42,6 +42,14 @@ tail +$SKIP $0 | tar xz -C $DIR
|
||||||
#cd $PREV
|
#cd $PREV
|
||||||
#rm -rf $WORK_DIR
|
#rm -rf $WORK_DIR
|
||||||
|
|
||||||
|
. ${MBOOT_HOME}/maven.functions
|
||||||
|
|
||||||
|
echo "-------------------------------------------------------"
|
||||||
|
echo "Installing MBoot dependencies ... "
|
||||||
|
echo "-------------------------------------------------------"
|
||||||
|
|
||||||
|
downloadMBootDependencies
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
__ARCHIVE_FOLLOWS__
|
__ARCHIVE_FOLLOWS__
|
||||||
|
|
Loading…
Reference in New Issue