7 lines
234 B
Bash
Executable File
7 lines
234 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
if [ "${TRAVIS_PULL_REQUEST}" = "false" -a "${TRAVIS_BRANCH}" = "master" -a "${PROFILE}" = "non-existent" ]; then
|
|
mvn -Pdistribute,snapshot,docs clean deploy
|
|
else
|
|
mvn clean dependency:list test -P${PROFILE} -Dsort
|
|
fi |