Search Gradle plugins

de.ethinking.gaffer

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.1 (latest)

Created 24 November 2016.

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.1"
}

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.1")
  }
}

apply(plugin = "de.ethinking.gaffer")

Using the plugins DSL:

plugins {
  id "de.ethinking.gaffer" version "0.8.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.ethinking.gradle:gaffer-base:0.8.1"
  }
}

apply plugin: "de.ethinking.gaffer"

Learn how to apply plugins to subprojects