Skip to content

Commit b723213

Browse files
committed
Fix publishing plugins
1 parent a06d4ff commit b723213

File tree

3 files changed

+6
-16
lines changed

3 files changed

+6
-16
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ buildscript {
55
}
66

77
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.2.1'
9-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
8+
classpath 'com.android.tools.build:gradle:3.4.2'
9+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
1010
}
1111
}
1212

gradle/gradle-bintray-upload.gradle

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@ apply plugin: 'com.jfrog.bintray'
22

33
version = VERSION_NAME
44

5-
Properties properties = new Properties()
6-
properties.load(project.rootProject.file('local.properties').newDataInputStream())
7-
85
bintray {
9-
user = properties.getProperty("bintray.user")
10-
key = properties.getProperty("bintray.apikey")
11-
6+
user = bintray_user
7+
key = bintray_apikey
128
configurations = ['archives']
139
pkg {
1410
repo = 'maven'
@@ -19,11 +15,5 @@ bintray {
1915
licenses = POM_LICENSES
2016
publish = true
2117
publicDownloadNumbers = true
22-
version {
23-
gpg {
24-
sign = true
25-
passphrase = properties.getProperty("bintray.gpg.password")
26-
}
27-
}
2818
}
2919
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sat Nov 03 21:04:21 WET 2018
1+
#Sat Aug 17 13:35:25 WEST 2019
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip

0 commit comments

Comments
 (0)