You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
394 B
13 lines
394 B
#!/bin/bash
|
|
#
|
|
# Deploy a snapshot build to Sonatype.
|
|
#
|
|
|
|
set -e
|
|
|
|
echo "Pull request: '${TRAVIS_PULL_REQUEST}' on branch '${TRAVIS_BRANCH}' with JDK '${TRAVIS_JDK_VERSION}'"
|
|
if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_BRANCH}" = "master" ] && [ "${TRAVIS_JDK_VERSION}" = "oraclejdk8" ]; then
|
|
echo "Deploying snapshot..."
|
|
SKIP_JAVADOC=true ./gradlew upload --info --stacktrace
|
|
fi
|