Files
Parabot/.travis/maven-build.sh
T
2016-05-24 12:27:20 +02:00

7 lines
134 B
Bash
Executable File

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