diff --git a/build.gradle b/build.gradle index 1885b184..abb6fb6a 100644 --- a/build.gradle +++ b/build.gradle @@ -1,12 +1,3 @@ -buildscript { - repositories { - jcenter() - } - dependencies { - classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:0.5' - } -} - plugins { id "com.gradle.plugin-publish" version "0.9.9" } @@ -17,7 +8,6 @@ apply plugin: 'maven' apply plugin: 'signing' apply plugin: 'eclipse' apply plugin: 'idea' -apply plugin: 'com.jfrog.bintray' apply from: "gradle/integrationTest.gradle" group = 'de.undercouch' @@ -181,33 +171,6 @@ uploadArchives { } } -bintray { - user = this.hasProperty('bintrayUser') ? bintrayUser : '' - key = this.hasProperty('bintrayApiKey') ? bintrayApiKey : '' - - configurations = ['archives'] - - dryRun = false - publish = !project.version.endsWith('-SNAPSHOT') - pkg { - def githubUrl = 'https://github.com/michel-kraemer/gradle-download-task' - repo = 'maven' - name = 'de.undercouch:gradle-download-task' - desc = 'Adds a download task to Gradle that displays progress information' - websiteUrl = githubUrl - issueTrackerUrl = "$githubUrl/issues" - vcsUrl = "${githubUrl}.git" - licenses = ['Apache-2.0'] - labels = ['gradle', 'download', 'task', 'plugin', 'progress', 'url', 'server', 'file', 'http'] - publicDownloadNumbers = true - // version descriptor - version { - name = project.version - attributes = ['gradle-plugin': "de.undercouch.download:${project.group}:gradle-download-task"] - } - } -} - pluginBundle { website = 'https://github.com/michel-kraemer/gradle-download-task' vcsUrl = 'https://github.com/michel-kraemer/gradle-download-task'