com.github.jk1.dependency-license-report
                  Owner:
                  
                    
                    Evgeny Naumenko
                  
                
A plugin for generating reports about the licenses of the dependencies for your Gradle project
https://github.com/jk1/Gradle-License-Report
Sources: https://github.com/jk1/Gradle-License-Report
Version 2.5
Created 28 June 2023.
                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("com.github.jk1.dependency-license-report") version "2.5"
}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("com.github.jk1.dependency-license-report:com.github.jk1.dependency-license-report.gradle.plugin:2.5") }It can then be applied in the precompiled script plugin:plugins { id("com.github.jk1.dependency-license-report") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.jk1.dependency-license-report:com.github.jk1.dependency-license-report.gradle.plugin:2.5") } } apply(plugin = "com.github.jk1.dependency-license-report")
- Applying plugins to all subprojects .