Gradle-License-Report icon indicating copy to clipboard operation
Gradle-License-Report copied to clipboard

A plugin for generating reports about the licenses of third party software using Gradle

Results 95 Gradle-License-Report issues
Sort by recently updated
recently updated
newest added

Very cool plugin by the way! Using Gradle 6.8.3 and configuration something like this: ``` plugins { id 'com.github.jk1.dependency-license-report' version '1.17' } licenseReport { projects = [project] + project.subprojects -...

Hi i am just wondering if there is a step-by-step guide to help me on creating a custom render. Actually i am having visibility issues with com.github.jk1 packages within my...

I have the config like: ``` licenseReport { outputDir = licenseReportOutputDir.absolutePath renderers = arrayOf( com.github.jk1.license.render.InventoryHtmlReportRenderer( licenseHtmlReportFile.relativeTo(licenseReportOutputDir).path, "Toolbox Enterprise Server" ), com.github.jk1.license.render.TextReportRenderer( licenseTxtReportFile.relativeTo(licenseReportOutputDir).path, ) ) importers = arrayOf(object: com.github.jk1.license.importer.DependencyDataImporter{ override fun...

Plugin Version: 1.13 Gradle Version: 6.4.1 Using KotlinDSL I have a parent project with no code, just the _base_ and _dependency-license-report_ plugins applied. I have several Kotlin subprojects. I want...

I'm trying to migrate my Android codebase over to Gradle 7, and I'm having the following problem when running the plugin (verison 2.1): ``` A problem was found with the...

Hi, I am new to the license report plugin. I get warnings like ` The configuration :com.mycompany:runtimeClasspath was resolved without accessing the project in a safe manner. This may happen...

Adding a null `moduleLicense` to the `allowed-licenses.json` results in an empty report set, even though I have unallowed ones. Further, it requires gradle cache be cleared before it will again...

Hi, It can happen that same dependencies seem not to have license information provided or multiple licenses where you have to chose a license. For these scenarios, in order for...