We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 317c08a commit fb5825aCopy full SHA for fb5825a
build.gradle
@@ -25,6 +25,7 @@ plugins {
25
26
// https://docs.travis-ci.com/user/environment-variables/
27
final isCi = System.getenv("TRAVIS") != null
28
+final isJitpack = System.getenv("JITPACK") != null
29
30
ext {
31
bintrayDryRun = true
@@ -46,8 +47,8 @@ subprojects {
46
47
testCompile group: 'junit', name: 'junit', version: '4.12'
48
}
49
- if (!isCi) {
50
- // we don't need the bintray features for the ci build
+ if (!(isCi || isJitpack)) {
51
+ // we don't need the bintray features for the ci/jitpack builds build
52
apply from: rootProject.file('gradle/bintray.gradle')
53
54
0 commit comments