com.cmgapps.licenses
Owner: Christian Grach
Gradle plugin that provides a task to generate a HTML license report of your project.
https://github.com/chrimaeon/gradle-licenses-plugin
Sources: https://github.com/chrimaeon/gradle-licenses-plugin.git
Version 4.8.0 (latest)
4.8.0
Created 20 July 2024.
Gradle plugin that provides a task to generate a license report for the dependencies used in your project Java/Kotlin project.
Using the plugins DSL:
plugins {
id("com.cmgapps.licenses") version "4.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.cmgapps:gradle-licenses-plugin:4.8.0")
}
}
apply(plugin = "com.cmgapps.licenses")
Using the plugins DSL:
plugins {
id "com.cmgapps.licenses" version "4.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.cmgapps:gradle-licenses-plugin:4.8.0"
}
}
apply plugin: "com.cmgapps.licenses"