We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e6a8bd commit 7d04931Copy full SHA for 7d04931
.travis.yml
@@ -5,7 +5,7 @@ install: mvn install -P !build-extras -DskipTests=true -Dmaven.javadoc.skip=true
5
script: mvn test -P !build-extras -B
6
after_success:
7
- mvn clean test jacoco:report coveralls:report -P record-coverage,!build-extras -B
8
- - ./src/main/build/mvndeploy.sh
+ - chmod +x src/main/build/mvndeploy.sh && ./src/main/build/mvndeploy.sh
9
cache:
10
directories:
11
- ~/.m2/repository
src/main/build/mvndeploy.sh
@@ -1,6 +1,8 @@
1
#!/usr/bin/env bash
2
# based on http://www.debonair.io/post/maven-cd/
3
4
+set -e
+
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
if [ "$TRAVIS_BRANCH" = 'master' ] && [ "$TRAVIS_PULL_REQUEST" == 'false' ]; then
0 commit comments