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 109 Gradle-License-Report issues
Sort by recently updated
recently updated
newest added

The CsvReportRenderer adds a separator after every entry, which isn't specified according to RFC4180 https://tools.ietf.org/html/rfc4180. ``` if (includeHeaderLine) { output

Consider the following Gradle build: ```groovy plugins { id 'java' id 'com.github.jk1.dependency-license-report' version '1.16' } repositories { mavenCentral() } dependencies { implementation 'com.sun.activation:jakarta.activation:1.2.2' } ``` Running `./gradlew -i generateLicenseReport` outputs...

License report: 1.16 Gradle: 5.6.4 I am seeing a small number of projects in our generated license report which don't have a project URL set because it is not set...

I think the problem is caused by the fact that LICENSE file includes texts of licenses for 3rd party components, see e.g.: ``` [...] Ant-Contrib The following software may be...

I use some 3rd party libs that show up in "Unknown". They are licensed with the Apache 2.0 license. Is there some way to just make the association in one...

When we use this plugin, the output for a number of packages is "No license information found". I can make a copy of the resulting csv and manually update it...

enhancement

hi, i try to replace the currently used license plugin, cause it is not maintained anymore, with this plugin. I try to define licenses for dependencies where no license can...

The reporting gives me these under Unknown: ``` 948. Group: ru.gildor.knel Name: knel Version: 0.3 949. Group: ru.gildor.knel Name: knel-jvm Version: 0.3 ``` For: ``` dependencies { implementation("ru.gildor.knel:knel:0.3") } ```...

When using your gradle plugin to generate license report for all our applications i noticed, that not all use cases found were supported. I therefore addedthe following 2 extensions: 1....

Reporting does not work with composite builds at the moment. Please add support for composite builds so that they are also scanned for licenses.