org.ajoberstar.bintray
Owner: Andrew Oberstar
Simpler publishing to Bintray
https://github.com/ajoberstar/gradle-bintray
Sources: https://github.com/ajoberstar/gradle-bintray.git
Using the plugins DSL:
plugins {
id("org.ajoberstar.bintray") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.ajoberstar:gradle-bintray:0.1.1")
}
}
apply(plugin = "org.ajoberstar.bintray")
Using the plugins DSL:
plugins {
id "org.ajoberstar.bintray" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.ajoberstar:gradle-bintray:0.1.1"
}
}
apply plugin: "org.ajoberstar.bintray"