Files
Parabot/.travis/maven-build.sh
T
2016-10-18 21:16:33 +02:00

7 lines
140 B
Bash
Executable File

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