Skip to content

Commit 8c93265

Browse files
committed
Downgraded Bintray uploader to be JDK7 compatible.
1 parent a8633cc commit 8c93265

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010

1111
plugins {
12-
id "com.jfrog.bintray" version "1.7"
12+
id "com.jfrog.bintray" version "1.6" // version 1.7 requires JDK8
1313
}
1414

1515
apply plugin: 'java'
@@ -218,12 +218,12 @@ task release {
218218
dependsOn 'build'
219219
dependsOn 'uploadArchives'
220220
dependsOn 'closeAndPromoteRepository'
221-
// dependsOn 'bintrayUpload' // doesn't work with JDK7
221+
dependsOn 'bintrayUpload' // doesn't work with JDK7
222222

223223
tasks.findByName('build').mustRunAfter 'clean'
224224

225225
tasks.findByName('uploadArchives').mustRunAfter 'build'
226226
tasks.findByName('closeAndPromoteRepository').mustRunAfter 'uploadArchives'
227227

228-
// tasks.findByName('bintrayUpload').mustRunAfter 'build'
228+
tasks.findByName('bintrayUpload').mustRunAfter 'build'
229229
}

0 commit comments

Comments
 (0)