Search Gradle plugins

com.github.joschi.licenser

Owner: Jochen

A simple license header manager for Gradle (fork of org.cadixdev.licenser)

https://github.com/joschi/licenser

Sources: https://github.com/joschi/licenser

Version 0.6.1 (latest)

Created 02 March 2021.

A simple license header manager for Gradle (fork of org.cadixdev.licenser)

Using the plugins DSL:

plugins {
  id("com.github.joschi.licenser") version "0.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.joschi.licenser:licenser:0.6.1")
  }
}

apply(plugin = "com.github.joschi.licenser")

Using the plugins DSL:

plugins {
  id "com.github.joschi.licenser" version "0.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.joschi.licenser:licenser:0.6.1"
  }
}

apply plugin: "com.github.joschi.licenser"

Learn how to apply plugins to subprojects