name.yount.steffen.plugin-delegator
Owner: Steffen Yount
A delegator plugin for the new Gradle plugin DSL
http://steffen.yount.name/gradle-plugin-delegator/
Sources: https://github.com/steffenyount/gradle-plugin-delegator
Version 1
1
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 "1"
}
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:1")
}
}
apply(plugin = "name.yount.steffen.plugin-delegator")
Using the plugins DSL:
plugins {
id "name.yount.steffen.plugin-delegator" version "1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.name.yount.steffen.gradle.plugins:plugin-delegator:1"
}
}
apply plugin: "name.yount.steffen.plugin-delegator"