Files
Parabot/.travis/maven-build.sh
T
2016-06-26 17:38:52 +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