de.ethinking.gaffer
Owner: Simon Mieth
The Gradle Gaffer plugin provides a DSL for preparing complex deployment tasks. It works like the distribution plugin but with a different use case.
https://github.com/oss-ethinking/gradle-gaffer-plugin
Sources: https://github.com/oss-ethinking/gradle-gaffer-plugin
Version 0.8.0
0.8.0
Created 17 September 2015.
The Gradle Gaffer plugin provides a DSL for preparing complex deployment tasks. It works like the distribution plugin but with a different use case.
Using the plugins DSL:
plugins {
id("de.ethinking.gaffer") version "0.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.ethinking.gradle:gaffer-base:0.8.0")
}
}
apply(plugin = "de.ethinking.gaffer")
Using the plugins DSL:
plugins {
id "de.ethinking.gaffer" version "0.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.ethinking.gradle:gaffer-base:0.8.0"
}
}
apply plugin: "de.ethinking.gaffer"