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

7 lines
137 B
Bash
Executable File

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