com.jaredsburrows.license
Owner: Jared Burrows
This plugin provides a task to generate a HTML license report of your project.
https://github.com/jaredsburrows/gradle-license-plugin
Sources: https://github.com/jaredsburrows/gradle-license-plugin
Version 0.9.8 (latest)
0.9.8
Created 11 October 2024.
Gradle plugin that provides a task to generate a HTML license report of your project.
Using the plugins DSL:
plugins {
id("com.jaredsburrows.license") version "0.9.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.jaredsburrows:gradle-license-plugin:0.9.8")
}
}
apply(plugin = "com.jaredsburrows.license")
Using the plugins DSL:
plugins {
id "com.jaredsburrows.license" version "0.9.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.jaredsburrows:gradle-license-plugin:0.9.8"
}
}
apply plugin: "com.jaredsburrows.license"