Skip to content

Commit

Permalink
Fix publishing plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensousa committed Aug 17, 2019
1 parent a06d4ff commit b723213
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 16 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
}
}

Expand Down
14 changes: 2 additions & 12 deletions gradle/gradle-bintray-upload.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,9 @@ apply plugin: 'com.jfrog.bintray'

version = VERSION_NAME

Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())

bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")

user = bintray_user
key = bintray_apikey
configurations = ['archives']
pkg {
repo = 'maven'
Expand All @@ -19,11 +15,5 @@ bintray {
licenses = POM_LICENSES
publish = true
publicDownloadNumbers = true
version {
gpg {
sign = true
passphrase = properties.getProperty("bintray.gpg.password")
}
}
}
}
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Nov 03 21:04:21 WET 2018
#Sat Aug 17 13:35:25 WEST 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip

0 comments on commit b723213

Please sign in to comment.