gradle-license-plugin
gradle-license-plugin copied to clipboard
Gradle plugin that provides a task to generate a HTML license report of your project.
As soon as I include a dependency on androidx.camera:camera-camera2:1.3.0 in my Android project the license report task fails. > ./gradlew --stacktrace licenseDebugReport org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':xxx:licenseDebugReport'. at ......
`licenseReport` task doesn't support [Gradle's configuration cache](https://docs.gradle.org/current/userguide/configuration_cache.html). This is what I get when I enable the configuration cache for my project: ``` 2015 problems were found storing the configuration cache,...
`LicenseReportTask` needs to run per variant (as variant dependencies might differ), thus, there might be multiple `LicenseReportTask` tasks defined in the project, e.g. `licenseDebugReport` or `licenseReleaseReport`. But all such tasks...
On my new multi module project, I am not able to generate the licenses. I get this error: ``` Resolution of the configuration :tv:pomsplayRelease54054027-1f56-4fe1-8df6-5804c8042e66 was attempted from a context different...
Addresses issue #283. I applied an (arbitrary!) upper limit of 5 to recursion when finding licenses, but this is obviously subject to change if you reckon so. Also applied the...
gradle 8
Is this possible to add copy right text along with license information?
I'm creating this issue as a request for the ability to hide versions from the generated report. I'm considering doing this work myself and opening a pull request, just wanted...
In the section that shows ```kotlin class OpenSourceLicensesDialog : DialogFragment() { fun showLicenses(activity: AppCompatActivity) { val fragmentManager = activity.getSupportFragmentManager() val fragmentTransaction = fragmentManager.beginTransaction() val previousFragment = fragmentManager.findFragmentByTag("dialog_licenses") if (previousFragment !=...