dev.yumi.gradle.licenser
Owner: Yumi Project
A plugin to automatically manage license headers in project files, designed to be very flexible to easily support many use cases like having different header kinds for different files.
https://github.com/YumiProject/yumi-gradle-licenser
Sources: https://github.com/YumiProject/yumi-gradle-licenser
Version 2.1.0 (latest)
Created 10 December 2024.
A plugin to automatically manage license headers in project files, designed to be flexible to easily support many use cases like having different header kinds for different files.
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.yumi.gradle.licenser") version "2.1.0"
}
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("dev.yumi.gradle.licenser:dev.yumi.gradle.licenser.gradle.plugin:2.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("dev.yumi.gradle.licenser") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.yumi.gradle.licenser:dev.yumi.gradle.licenser.gradle.plugin:2.1.0") } } apply(plugin = "dev.yumi.gradle.licenser")
- Applying plugins to all subprojects .