Files
Parabot/.travis/maven-build.sh
T
2016-06-26 17:38:03 +02:00

8 lines
192 B
Bash
Executable File

#! /bin/bash
if [ "$TRAVIS_BRANCH" == "master" ]; then
mvn -U package
mkdir -p $TRAVIS_BUILD_DIR/target/apidocs/zips/
else
mvn -Dbuild.version="-RC-$TRAVIS_BUILD_ID" -U package
fi