Andy LoPresto created KAFKA-7356:
------------------------------------
Summary: 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
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)