mirror of
https://github.com/square/okhttp.git
synced 2025-11-26 06:43:09 +03:00
* Build with 3 targets * Update maven * remove jdk 12 ea * Try without errorprone temporarily * Still set 1.8 * javadoc tolerance * Profiles for 10 + 11 * More tolerant * JDK 11 test skipping * Cleanup imports * Link to github issues * Support JDK 12 building
27 lines
1002 B
Bash
Executable File
27 lines
1002 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Deploy a jar, source jar, and javadoc jar to Sonatype's snapshot repo.
|
|
#
|
|
# Adapted from https://coderwall.com/p/9b_lfq and
|
|
# https://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..."
|
|
./mvnw clean source:jar javadoc:jar deploy --settings=".buildscript/settings.xml" -DskipTests -B
|
|
echo "Snapshot deployed!"
|
|
fi
|