nrlssc.gplugin-commons
Owner: Sean Craft
This is not a plugin, just a library needed for other nrlssc plugins
https://github.com/nrl-gradle/gplugin-commons
Sources: https://github.com/seanrl/gplugin-commons.git
Version 1.7.17
Created 14 May 2020.
This is not a plugin, just a library needed for other nrlssc plugins
Add this plugin to your build using the plugins DSL:
plugins {
id("nrlssc.gplugin-commons") version "1.7.17"
}
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("nrlssc.gplugin-commons:nrlssc.gplugin-commons.gradle.plugin:1.7.17") }
It can then be applied in the precompiled script plugin:plugins { id("nrlssc.gplugin-commons") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("nrlssc.gplugin-commons:nrlssc.gplugin-commons.gradle.plugin:1.7.17") } } apply(plugin = "nrlssc.gplugin-commons")
- Applying plugins to all subprojects .