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

First of all thanks for the plugin! I am currently facing following error: ``` > Task :generateLicenseReport FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed...

Neither the simple nor the inventory html report renderer print out the licenses found in a license file. If you for example have in the `project-licenses-for-check-license-task.json` file ```json { "moduleName":...

![image](https://github.com/jk1/Gradle-License-Report/assets/325196/7cf001a0-4309-403d-9d46-0c3e01c893bc)

If a dependency has multiple licenses detected, this can basically mean four things. Either the code is dual-licensed under both licenses (for example `net.java.dev.jna:jna:5.6.0`), or the parent POM is covered...

The `InventoryHtmlReportRenderer` is nicely customizable with a subclass, as all kinds of methods are protected and can be overridden to do fine-grained customizing. But for two reasons said methods should...

If I change the options (e.g. filename or name) of a renderer in the Gradle configuration and then generate a new report, these changed options are not taken into account....

It would be nice if you were able to configure a filterspec for the configurations to check instead of just giving them by name. That way you could for example...

Similar to https://github.com/jk1/Gradle-License-Report/issues/291, I'd like to see CsvReportRenderer to show multiple licenses if possible. Motivation - libraries such as https://github.com/qos-ch/logback?tab=License-1-ov-file is dual licensed. Current CsvReportRenderer - https://github.com/jk1/Gradle-License-Report/blob/master/src/main/groovy/com/github/jk1/license/render/CsvReportRenderer.groovy#L89C102-L89C125 only gets one...

For some reason Jaxb has multiple pom.xml files in the jar file. At the moment the plugin chooses the first one, which happens to be an incorrect one, as the...