Search Gradle plugins

Version 0.7.1 (latest)

Created 25 November 2021.

A simple license header manager for Gradle

Using the plugins DSL:

plugins {
  id("org.scm-manager.license") version "0.7.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.scm-manager:gradle-license-plugin:0.7.1")
  }
}

apply(plugin = "org.scm-manager.license")

Using the plugins DSL:

plugins {
  id "org.scm-manager.license" version "0.7.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.scm-manager:gradle-license-plugin:0.7.1"
  }
}

apply plugin: "org.scm-manager.license"

Learn how to apply plugins to subprojects