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 2 (latest)
Created 19 January 2016.
                A delegator plugin for the new Gradle plugin DSL
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("name.yount.steffen.plugin-delegator") version "2"
}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("name.yount.steffen.plugin-delegator:name.yount.steffen.plugin-delegator.gradle.plugin:2") }It can then be applied in the precompiled script plugin:plugins { id("name.yount.steffen.plugin-delegator") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("name.yount.steffen.plugin-delegator:name.yount.steffen.plugin-delegator.gradle.plugin:2") } } apply(plugin = "name.yount.steffen.plugin-delegator")
- Applying plugins to all subprojects .