From 06dc67a480e65a98c1d85aeeb9919fd6dcda49b3 Mon Sep 17 00:00:00 2001 From: Manikumar Reddy Date: Tue, 25 Oct 2022 18:39:53 +0530 Subject: [PATCH] MINOR: Fix allDepInsight gradle task with gradle 7.5 (#12779) Reviewers: David Jacot --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 90a9534861f..04584160c1c 100644 --- a/build.gradle +++ b/build.gradle @@ -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'