aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
blob: d052388edf251fd299c6472fa63ee063af4381e5 (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
24
25
26
27
28
29
30
31
32
#!/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
  config-lib
  yolean
  vespajlib
  jrt
  vespalog
  testutil
  config
  config-bundle
  component
  configdefinitions
  messagebus
  filedistributionmanager"

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