Search Gradle plugins

Version 2 (latest)

2

Created 19 January 2016.

A delegator plugin for the new Gradle plugin DSL

Using the plugins DSL:

plugins {
  id("name.yount.steffen.plugin-delegator") version "2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.name.yount.steffen.gradle.plugins:plugin-delegator:2")
  }
}

apply(plugin = "name.yount.steffen.plugin-delegator")

Using the plugins DSL:

plugins {
  id "name.yount.steffen.plugin-delegator" version "2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.name.yount.steffen.gradle.plugins:plugin-delegator:2"
  }
}

apply plugin: "name.yount.steffen.plugin-delegator"

Learn how to apply plugins to subprojects