Search Gradle plugins

net.minecraftforge.licenser

A simple license header manager for Gradle - Fork of org.cadixdev.licenser

https://github.com/MinecraftForge/licenser

Sources: https://github.com/MinecraftForge/licenser.git

Version 1.0.1 (latest)

Created 01 December 2023.

A simple license header manager for Gradle - Fork of org.cadixdev.licenser

Using the plugins DSL:

plugins {
  id("net.minecraftforge.licenser") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.minecraftforge:licenser:1.0.1")
  }
}

apply(plugin = "net.minecraftforge.licenser")

Using the plugins DSL:

plugins {
  id "net.minecraftforge.licenser" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.minecraftforge:licenser:1.0.1"
  }
}

apply plugin: "net.minecraftforge.licenser"

Learn how to apply plugins to subprojects