Search Gradle plugins

com.github.oehme.sobula.stefan

My automated build process for Java open source libraries

https://github.com/oehme/sobula

Version 0.6.2

Created 21 September 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("com.github.oehme.sobula.stefan") version "0.6.2"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.github.oehme.sobula.stefan" version "0.6.2"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects