[
https://issues.apache.org/jira/browse/KAFKA-7356?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16596877#comment-16596877
]
ASF GitHub Bot commented on KAFKA-7356:
---------------------------------------
alopresto opened a new pull request #5589: KAFKA-7356 Added allDeps task to
generate complete dependency report.
URL: https://github.com/apache/kafka/pull/5589
This task allows a user to examine the dependency list to confirm/deny use
of a specific dependency. Running `$ gradle -q dependencies` in the root
directory only lists the `rat` dependencies. Adding a custom section to
_build.gradle_ allows for a complete listing of the dependencies from the
command line.
```
subprojects {
task allDeps(type: DependencyReportTask) {}
}
```
To invoke: `$ gradle allDeps`
### Committer Checklist (excluded from commit message)
- [ ] Verify design and implementation
- [ ] Verify test coverage and CI build status
- [ ] Verify documentation (including upgrade notes)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> Add gradle task for dependency listing
> --------------------------------------
>
> Key: KAFKA-7356
> URL: https://issues.apache.org/jira/browse/KAFKA-7356
> Project: Kafka
> Issue Type: New Feature
> Components: build, packaging
> Reporter: Andy LoPresto
> Priority: Minor
>
> I needed to examine the dependency list to confirm/deny use of a specific
> dependency. Running {{gradle -q dependencies}} in the root directory only
> lists the {{rat}} dependencies. Adding a custom section to *build.gradle*
> allows for a complete listing of the dependencies from the command line.
> {code}
> subprojects {
> task allDeps(type: DependencyReportTask) {}
> }
> {code}
> To invoke: {{gradle allDeps}}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)