org.scm-manager.license
Owner: SCM-Manager Team at Cloudogu
A simple license header manager for Gradle
Sources: https://github.com/scm-manager/gradle-license-plugin
Version 0.8.0 (latest)
0.8.0
Created 10 September 2024.
A simple license header manager for Gradle
Using the plugins DSL:
plugins {
id("org.scm-manager.license") version "0.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.scm-manager:gradle-license-plugin:0.8.0")
}
}
apply(plugin = "org.scm-manager.license")
Using the plugins DSL:
plugins {
id "org.scm-manager.license" version "0.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.scm-manager:gradle-license-plugin:0.8.0"
}
}
apply plugin: "org.scm-manager.license"