We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d45c43d commit f1f9504Copy full SHA for f1f9504
2 files changed
build.gradle
@@ -66,7 +66,7 @@ subprojects {
66
67
java {
68
withSourcesJar()
69
-// withJavadocJar()
+ withJavadocJar()
70
}
71
72
publishing {
travis-build.sh
@@ -14,10 +14,11 @@ EOL
14
chmod 600 $HOME/.netrc
15
16
17
-if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_BRANCH}" = "master" ] && [ "${RELEASE}" = "true" ]; then
+# && [ "${RELEASE}" = "true" ]
18
+if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "${TRAVIS_BRANCH}" = "master" ]; then
19
echo "Deploying release to Bintray"
20
saveGitCredentials
- git checkout -f ${TRAVIS_BRANCH}
21
+# git checkout -f ${TRAVIS_BRANCH}
22
./gradlew clean assemble && ./gradlew check --info && ./gradlew bintrayUpload -x check --info
23
else
24
echo "Verify"
0 commit comments