MINOR: Fix allDepInsight gradle task with gradle 7.5 (#12779)

Reviewers: David Jacot <djacot@confluent.io>
This commit is contained in:
Manikumar Reddy 2022-10-25 18:39:53 +05:30 committed by GitHub
parent 0a111a0812
commit 06dc67a480
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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'