summaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@oath.com>2017-09-06 14:30:21 +0200
committerBjørn Christian Seime <bjorncs@oath.com>2017-09-06 14:30:21 +0200
commitae1fc3381a04c78f88b9c6e7ec9c6e42671f1fb3 (patch)
tree80926e94184dc85199bda2fce21273c30d983aab /bootstrap.sh
parentfb1818824b94e1ee4ca553065a2f6ba73b219ca7 (diff)
Add some user output to bootstrap script
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index e31e0cabda9..126359b3951 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -45,9 +45,11 @@ $top/dist/getversion.pl -M $top > $top/dist/vtag.map
# The 'full' mode also builds modules needed by C++ tests.
# must install parent pom first:
+echo "Downloading all dependencies. This make take a few of minutes with an empty Maven cache."
mvn_install -N
# and build plugins first:
+echo "Building Vespa Maven plugins."
mvn_install -f maven-plugins/pom.xml
# now everything else should just work with normal maven dependency resolution:
@@ -56,9 +58,11 @@ case "$MODE" in
java)
;;
full)
+ echo "Building full set of dependencies."
mvn_install -am -pl filedistributionmanager,jrt,linguistics,messagebus
;;
default)
+ echo "Building default set of dependencies."
mvn_install -am -pl filedistributionmanager
;;
esac