mirror of https://github.com/apache/kafka.git
MINOR: Fix allDepInsight gradle task with gradle 7.5 (#12779)
Reviewers: David Jacot <djacot@confluent.io>
This commit is contained in:
parent
0a111a0812
commit
06dc67a480
|
@ -221,7 +221,7 @@ subprojects {
|
|||
task allDeps(type: DependencyReportTask) {}
|
||||
// enable running :dependencyInsight task recursively on all subprojects
|
||||
// eg: ./gradlew allDepInsight --configuration runtime --dependency com.fasterxml.jackson.core:jackson-databind
|
||||
task allDepInsight(type: DependencyInsightReportTask) doLast {}
|
||||
task allDepInsight(type: DependencyInsightReportTask) {showingAllVariants = false} doLast {}
|
||||
|
||||
apply plugin: 'java-library'
|
||||
apply plugin: 'checkstyle'
|
||||
|
|
Loading…
Reference in New Issue