summaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
blob: 60145b390776c47ebe0532652de18e585b47282d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash -e
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

# Generate vtag map
top=$(dirname $0)
$top/dist/getversion.pl -M $top > $top/dist/vtag.map

# These modules are required to be available to maven for it to calculate the
# Vespa java dependency graph.
MODULES="
  parent
  configgen
  annotations
  scalalib
  bundle-plugin
  config-class-plugin
  yolean
  vespajlib
  filedistributionmanager"

for module in $MODULES; do
    (cd $module && mvn install -DskipTests -Dmaven.javadoc.skip=true)
done