Owner:
Sean Craft
This is not a plugin, just a library needed for other nrlssc plugins
Version 2.0.6
Created 26 June 2026.
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("mil.navy.nrlssc.add-legal-header") version "2.0.6"
}
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("mil.navy.nrlssc.add-legal-header:mil.navy.nrlssc.add-legal-header.gradle.plugin:2.0.6") }It can then be applied in the precompiled script plugin:plugins { id("mil.navy.nrlssc.add-legal-header") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("mil.navy.nrlssc.add-legal-header:mil.navy.nrlssc.add-legal-header.gradle.plugin:2.0.6") } } apply(plugin = "mil.navy.nrlssc.add-legal-header") - Applying plugins to all subprojects .