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.
26 lines
1006 B
26 lines
1006 B
#!/bin/bash |
|
# |
|
# Deploy a jar, source jar, and javadoc jar to Sonatype's snapshot repo. |
|
# |
|
# Adapted from https://coderwall.com/p/9b_lfq and |
|
# http://benlimmer.com/2013/12/26/automatically-publish-javadoc-to-gh-pages-with-travis-ci/ |
|
|
|
SLUG="square/okhttp" |
|
JDK="oraclejdk8" |
|
BRANCH="master" |
|
|
|
set -e |
|
|
|
if [ "$TRAVIS_REPO_SLUG" != "$SLUG" ]; then |
|
echo "Skipping snapshot deployment: wrong repository. Expected '$SLUG' but was '$TRAVIS_REPO_SLUG'." |
|
elif [ "$TRAVIS_JDK_VERSION" != "$JDK" ]; then |
|
echo "Skipping snapshot deployment: wrong JDK. Expected '$JDK' but was '$TRAVIS_JDK_VERSION'." |
|
elif [ "$TRAVIS_PULL_REQUEST" != "false" ]; then |
|
echo "Skipping snapshot deployment: was pull request." |
|
elif [ "$TRAVIS_BRANCH" != "$BRANCH" ]; then |
|
echo "Skipping snapshot deployment: wrong branch. Expected '$BRANCH' but was '$TRAVIS_BRANCH'." |
|
else |
|
echo "Deploying snapshot..." |
|
mvn clean source:jar javadoc:jar deploy --settings=".buildscript/settings.xml" -Dmaven.test.skip=true |
|
echo "Snapshot deployed!" |
|
fi
|
|
|