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