io.github.enrignagna.Plugin-Test
Owner: Enrico Gnagnarella
A template repository for kickstarting Gradle Plugins
https://github.com/enrignagna/PluginTest
Sources: https://github.com/enrignagna/PluginTest
Version 0.1.0-archeo+03c58e4
Created 27 May 2021.
A template repository for kickstarting Gradle Plugins
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.enrignagna.Plugin-Test") version "0.1.0-archeo+03c58e4"
}
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("io.github.enrignagna.Plugin-Test:io.github.enrignagna.Plugin-Test.gradle.plugin:0.1.0-archeo+03c58e4") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.enrignagna.Plugin-Test") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.enrignagna.Plugin-Test:io.github.enrignagna.Plugin-Test.gradle.plugin:0.1.0-archeo+03c58e4") } } apply(plugin = "io.github.enrignagna.Plugin-Test")
- Applying plugins to all subprojects .