Search Gradle plugins

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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("de.ethinking.gaffer:de.ethinking.gaffer.gradle.plugin:0.8.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("de.ethinking.gaffer")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.ethinking.gaffer:de.ethinking.gaffer.gradle.plugin:0.8.1")
      }
    }
    
    apply(plugin = "de.ethinking.gaffer")
  • Applying plugins to all subprojects .