summaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2021-02-05 12:58:45 +0100
committergjoranv <gv@verizonmedia.com>2021-02-05 12:58:45 +0100
commit667177378a6d3607116111c7b8e9b3002be2ffc3 (patch)
tree7c28d32284537f426a0731003cd31b22d4e93939 /bootstrap.sh
parent4bcef4ebd8133c5be2bb6062a4ae76bfec565dea (diff)
Do not use multi-threaded maven build for plugins.
- Parallel build of plugins with the same groupId is unsafe, as each thread updates the maven-metadata.xml file without any locking.
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-xbootstrap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index 79fe6d2c9bf..c9d24d9076c 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -74,7 +74,7 @@ mvn_install -N
# and build plugins first:
echo "Building Vespa Maven plugins."
-mvn_install --threads 1.5C -f maven-plugins/pom.xml
+mvn_install -f maven-plugins/pom.xml
# now everything else should just work with normal maven dependency resolution: