gradle-license-plugin
gradle-license-plugin copied to clipboard
Gradle plugin that provides a task to generate a HTML license report of your project.
We use Koin in our project https://github.com/InsertKoinIO/koin which seems to be using a standard Apache 2.0 license. The only difference from other projects, though, seems to be that it's put...
I just wanted to make you aware of this project which is attempting to capture missing license information from projects. It may be useful to add something that can pull...
Based on https://github.com/jaredsburrows/gradle-license-plugin/issues/37, let's go ahead and generate and copy HTML generated license page to the `assets` folder. These should be default to `true` while CSV and JSON generation should...
In the HTML report the output contains `...` directly followed by the license text with `` on the same level, but they must be wrapped in an `` to be...
In https://github.com/jaredsburrows/gradle-license-plugin/blob/a441c46b1b1f90792772d76638ddc48af53a2261/gradle-license-plugin/src/main/kotlin/com/jaredsburrows/license/projectAndroid.kt#L97 the plugin determines all configured assets directories of a specific build variant to be able to copy the generated resources to it. IMHO this is the wrong approach,...
I wanted to try out the ```useVariantSpecificAssetDirs``` flag (set to ```true```) together with the ```ignoredPatterns``` feature so I updated to 0.9.1-SNAPSHOT. I ran into an issue when building though: ```...
The csv output formatter gets confused when commas exist in the text being outputted. The commas could simply be removed is probably the easiest. As well newline characters seem to...
Currently only the HTML report contains the full license text. We'd love to use your plugin but we need the full license text in the JSON report. Would you be...
After adding `com.jaredsburrows.license` plugin to my Kotlin project ``` plugins { id("org.jlleitschuh.gradle.ktlint") version "11.3.1" id("com.jaredsburrows.license") version "0.9.3" apply false kotlin("jvm") version "1.7.0" kotlin("kapt") version "1.7.0" } ``` my project stopped...
Bumps [EnricoMi/publish-unit-test-result-action](https://github.com/enricomi/publish-unit-test-result-action) from 2.11.0 to 2.12.0. Release notes Sourced from EnricoMi/publish-unit-test-result-action's releases. v2.12.0 Adds the following features: Add option to disable status checks (#532) Fix action_fail_on_inconclusive, which was not working...