summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorGeir Storli <geirst@verizonmedia.com>2020-04-21 15:52:09 +0200
committerGeir Storli <geirst@verizonmedia.com>2020-04-21 15:52:09 +0200
commit00ee3194a13ad2d26ad530aad8d1adf10018833f (patch)
tree0892503446da599870358d31c58e6688aed23fae /README.md
parent6f5ca49e45cdc8262fcf360b1c731a393385ffa8 (diff)
Make commands for building Java modules platform independent and aligned with dev guide.
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index 194d24885f1..19d87fbad98 100644
--- a/README.md
+++ b/README.md
@@ -74,9 +74,8 @@ for building Vespa, running unit tests and running system tests:
### Build Java modules
export MAVEN_OPTS="-Xms128m -Xmx1024m"
- source /opt/rh/rh-maven35/enable
- bash bootstrap.sh java
- mvn -T <num-threads> install
+ ./bootstrap.sh java
+ mvn install --threads 1C
Use this if you only need to build the Java modules, otherwise follow the complete development guide above.