Search Gradle plugins

com.github.oehme.sobula.release

My automated build process for Java open source libraries

https://github.com/oehme/sobula

Version 0.2.1

Created 09 December 2014.

No version description available.

Using the plugins DSL:

plugins {
  id("com.github.oehme.sobula.release") version "0.2.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.github.oehme.sobula.release" version "0.2.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects