From 7c8d9f2bbcbad2ce47058036f974624aff102d9f Mon Sep 17 00:00:00 2001 From: Tonic Artos Date: Mon, 11 May 2015 19:07:39 +0200 Subject: [PATCH] Fix bintray upload. --- library/build.gradle | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/library/build.gradle b/library/build.gradle index 2b02774..99015b2 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -68,15 +68,6 @@ apply from: 'https://raw.github.com/TonicArtos/gradle-mvn-push/master/gradle-mvn afterEvaluate { androidJavadocs.classpath += project.android.libraryVariants.toList().first().javaCompile.classpath - -} - -def getBintrayUsername() { - return hasProperty('BINTRAY_USER') ? BINTRAY_USER : "" -} - -def getBintrayKey() { - return hasProperty('BINTRAY_KEY') ? BINTRAY_KEY : "" } publish { @@ -86,8 +77,6 @@ publish { publishVersion = VERSION_NAME description = 'A layout manager for the RecyclerView with interchangeable linear, grid, and staggered displays of views, all with configurable section headers including the sticky variety as specified in the material design docs.' website = 'https://github.com/TonicArtos/SuperSLiM' - bintrayUser = getBintrayUsername() - bintrayKey = getBintrayKey() autoPublish = false dryRun = false }