Search Gradle plugins

dev.yumi.gradle.licenser

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.0.0 (latest)

2.0.0

Created 26 October 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.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.yumi:yumi-gradle-licenser:2.0.0")
      }
    }
    
    apply(plugin = "dev.yumi.gradle.licenser")
  • Applying plugins to all subprojects .