Files
Parabot/.travis/maven-build.sh
T
2016-05-23 17:57:22 +02:00

7 lines
129 B
Bash

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