se.ansman.autoplugin
Owner:
Nicklas Ansman Giertz
Generates configuration files for Gradle Plugins.
https://github.com/ansman/auto-plugin
Sources: https://github.com/ansman/auto-plugin
Version 0.4.1 (latest)
Created 02 October 2020.
Generates configuration files for Gradle Plugins.
Add this plugin to your build using the plugins DSL:
plugins {
id("se.ansman.autoplugin") version "0.4.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("se.ansman.autoplugin:se.ansman.autoplugin.gradle.plugin:0.4.1") }
It can then be applied in the precompiled script plugin:plugins { id("se.ansman.autoplugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("se.ansman.autoplugin:se.ansman.autoplugin.gradle.plugin:0.4.1") } } apply(plugin = "se.ansman.autoplugin")
- Applying plugins to all subprojects .