io.github.thakurvijendar.dependency-license-report
Owner: Vijender Kumar
A plugin for generating reports about the licenses of the dependencies for your Gradle project
https://github.com/thakurvijendar/Gradle-License-Report
Sources: https://github.com/thakurvijendar/Gradle-License-Report
Version 2.1 (latest)
Created 10 May 2022.
A plugin for generating reports about the licenses of the dependencies for your Gradle project
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.thakurvijendar.dependency-license-report") version "2.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.thakurvijendar.dependency-license-report:io.github.thakurvijendar.dependency-license-report.gradle.plugin:2.1") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.thakurvijendar.dependency-license-report") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.thakurvijendar.dependency-license-report:io.github.thakurvijendar.dependency-license-report.gradle.plugin:2.1") } } apply(plugin = "io.github.thakurvijendar.dependency-license-report")
- Applying plugins to all subprojects .