com.github.oehme.sobula.plugin-release
My automated build process for Java open source libraries
https://github.com/oehme/sobula
Version 0.6.7 (latest)
0.6.7
Created 08 March 2016.
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
Using the plugins DSL:
plugins {
id("com.github.oehme.sobula.plugin-release") version "0.6.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.oehme.sobula:sobula:0.6.7")
}
}
apply(plugin = "com.github.oehme.sobula.plugin-release")
Using the plugins DSL:
plugins {
id "com.github.oehme.sobula.plugin-release" version "0.6.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.oehme.sobula:sobula:0.6.7"
}
}
apply plugin: "com.github.oehme.sobula.plugin-release"