Skip to content

Commit

Permalink
Remove bintray configuration from build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
michel-kraemer committed Jul 3, 2021
1 parent 7cdc1ef commit 018a559
Showing 1 changed file with 0 additions and 37 deletions.
37 changes: 0 additions & 37 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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"
}
Expand All @@ -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'
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit 018a559

Please sign in to comment.