Search Gradle plugins

com.github.oehme.sobula.bintray-release

My automated build process for Java open source libraries

https://github.com/oehme/sobula

Version 0.3.0

Created 09 December 2014.

No version description available.

Using the plugins DSL:

plugins {
  id("com.github.oehme.sobula.bintray-release") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.oehme.sobula:sobula:0.3.0")
  }
}

apply(plugin = "com.github.oehme.sobula.bintray-release")

Using the plugins DSL:

plugins {
  id "com.github.oehme.sobula.bintray-release" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.oehme.sobula:sobula:0.3.0"
  }
}

apply plugin: "com.github.oehme.sobula.bintray-release"

Learn how to apply plugins to subprojects