Skip to content

Commit

Permalink
Bintray removed
Browse files Browse the repository at this point in the history
  • Loading branch information
pun-ky committed May 4, 2021
1 parent 078442e commit 5f7d995
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 24 deletions.
24 changes: 1 addition & 23 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ plugins {
id("org.jetbrains.dokka") version "1.4.0-rc"
id("com.gradle.plugin-publish") version "0.11.0"
id("io.gitlab.arturbosch.detekt") version "1.6.0"
id("com.jfrog.bintray") version "1.8.4"
id("net.researchgate.release") version "2.8.1"
id("com.github.breadmoirai.github-release") version "2.2.10"
}
Expand Down Expand Up @@ -107,7 +106,7 @@ tasks {
}

named("afterReleaseBuild") {
dependsOn("bintrayUpload", "publishPlugins")
dependsOn("publishPlugins")
}

named("githubRelease") {
Expand Down Expand Up @@ -156,27 +155,6 @@ pluginBundle {
tags = pluginTags
}

bintray {
user = (project.findProperty("bintray.user") ?: System.getenv("BINTRAY_USER"))?.toString()
key = (project.findProperty("bintray.key") ?: System.getenv("BINTRAY_KEY"))?.toString()
setPublications("mavenJava")
with(pkg) {
repo = "maven-public"
name = "gradle-environment-plugin"
userOrg = "wttech"
setLicenses("Apache-2.0")
vcsUrl = "https://github.com/wttech/gradle-environment-plugin.git"
setLabels(*pluginTags.toTypedArray())
with(version) {
name = project.version.toString()
desc = "${project.description} ${project.version}"
vcsTag = project.version.toString()
}
}
publish = (project.findProperty("bintray.publish") ?: "true").toString().toBoolean()
override = (project.findProperty("bintray.override") ?: "false").toString().toBoolean()
}

githubRelease {
owner("wttech")
repo("gradle-environment-plugin")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=1.3.4
version=1.3.5
release.useAutomaticVersion=true

0 comments on commit 5f7d995

Please sign in to comment.