org.ysb33r.bintray
Owner: Schalk Cronjé
This is a bintray publish plugin for Gradle
https://github.com/ysb33r/bintray
Version 3.0 (latest)
3.0
Created 17 October 2019.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
This is a bintray publish plugin for Gradle
Using the plugins DSL:
plugins {
id("org.ysb33r.bintray") version "3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.ysb33r.gradle:bintray-gradle-plugin:3.0")
}
}
apply(plugin = "org.ysb33r.bintray")
Using the plugins DSL:
plugins {
id "org.ysb33r.bintray" version "3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.ysb33r.gradle:bintray-gradle-plugin:3.0"
}
}
apply plugin: "org.ysb33r.bintray"