aboutsummaryrefslogtreecommitdiffstats
path: root/travis/travis-build-java.sh
blob: 68341d784b57e06367ce17de43d5124e19e8f8c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
set -e

SOURCE_DIR=/source
NUM_THREADS=4

cd "${SOURCE_DIR}"
export MAVEN_OPTS="-Xms128m -Xmx512m"
sh ./bootstrap.sh java
mvn install -nsu -B -T ${NUM_THREADS} -V # Should ideally split out test phase, but some unit tests fails on 'mvn test'