Skip to content

Commit

Permalink
Downgraded Bintray uploader to be JDK7 compatible.
Browse files Browse the repository at this point in the history
  • Loading branch information
conor10 committed Nov 14, 2016
1 parent a8633cc commit 8c93265
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}

plugins {
id "com.jfrog.bintray" version "1.7"
id "com.jfrog.bintray" version "1.6" // version 1.7 requires JDK8
}

apply plugin: 'java'
Expand Down Expand Up @@ -218,12 +218,12 @@ task release {
dependsOn 'build'
dependsOn 'uploadArchives'
dependsOn 'closeAndPromoteRepository'
// dependsOn 'bintrayUpload' // doesn't work with JDK7
dependsOn 'bintrayUpload' // doesn't work with JDK7

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

tasks.findByName('uploadArchives').mustRunAfter 'build'
tasks.findByName('closeAndPromoteRepository').mustRunAfter 'uploadArchives'

// tasks.findByName('bintrayUpload').mustRunAfter 'build'
tasks.findByName('bintrayUpload').mustRunAfter 'build'
}

0 comments on commit 8c93265

Please sign in to comment.