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)


[ Full content available at: https://github.com/apache/kafka/pull/5589 ]
This message was relayed via gitbox.apache.org for [email protected]

Reply via email to