gradle-license-plugin icon indicating copy to clipboard operation
gradle-license-plugin copied to clipboard

Gradle plugin that provides a task to generate a HTML license report of your project.

Results 64 gradle-license-plugin issues
Sort by recently updated
recently updated
newest added

Hi, I'd like to remove some dependencies from the licenseReport task. When I add it to the gradle file, gradle sync fails with the following message: `Caused by: groovy.lang.MissingPropertyException: Could...

I have an android project (with AGP 3.2.0) with a lot of library modules. I would like to have all dependencies in one file. Is this currently possible? I would...

enhancement

https://github.com/jaredsburrows/gradle-license-plugin/issues/368

``` tasks.whenTaskAdded { if (name == "assembleDebug") { dependsOn("licenseDebugReport") } } tasks.whenTaskAdded { if (name == "assembleRelease") { dependsOn("licenseReleaseReport") } } ```

**Motivation** Certain licenses of project dependencies might be allowed and others not. A gradle task could automate the check if there are dependencies with licenses which are not allowed. **Specification**...

help wanted

It would be quite useful if the plugin allows devs to define the asset folder destination and the related file name (both for the json and html).

enhancement

Hello. Prompting the user to be aware of the unknown licenses is really a great feature. But we cannot just ship the notice without doing anything. Currently there seems no...

enhancement

While using your gradle license plugin in a bigger project I noticed that it's not possible to run the **license{$variant}Report** in a task that also depends on **process{$variant}Manifest**, from the...