Added support for specifying closures as renderers for the HTML "dependency to license" report of "downloadLicenses"#37
Open
marcotrevisan wants to merge 4 commits intohierynomus:masterfrom
Open
Conversation
added 3 commits
March 13, 2014 18:05
custom renderer closures for dependency to license reports.
variable "dependenciesToIgnore" and has no input parameters. NEW: Added the isIgnored(String dependency) method to isolate the logic that evaluates the "ignored" status. Now also groups are looked up. NEW: DependencyMetadata, populated the new "pomXml" property that carries all the POM information.
POM information. NEW: Usage of the renderer closures to render the "Dependency to license" HTML report.
|
Jeroen van Erp » license-gradle-plugin #20 FAILURE |
Author
|
Looks like I've broken some unit tests. Sorry. Cheers, |
|
Jeroen van Erp » license-gradle-plugin #21 FAILURE |
Author
|
The latest build failed due to a timeout in cloning the git repo. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi all,
I added support for specifying closures as renderers for the HTML "dependency to license" report of "downloadLicenses".
Other useful changes are:
With the new patch, users can specify something like the following:
The code works successfully.
I wasn't able to set the closures as "@input" parameters of the task due to the fact that gradle then executes them with no arguments as a result of an "unwrap" phase at setup time, leading to the following exception:
Maybe you know how to correctly set them as input parameters.