Skip to content

Commit 40ef461

Browse files
docs(gradle): Document why a dependency analysis rule is disabled
Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.io> Co-authored-by: Martin Nonnenmacher <martin.nonnenmacher@doubleopen.io>
1 parent 18fdf4e commit 40ef461

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ dependencyAnalysis {
4545
exclude(libs.log4j.api.kotlin)
4646
}
4747

48-
onUsedTransitiveDependencies { severity("ignore") }
48+
onUsedTransitiveDependencies {
49+
// Ignore this rule for now as it creates a massive amount of findings.
50+
severity("ignore")
51+
}
52+
4953
onIncorrectConfiguration { severity("fail") }
5054
onCompileOnly { severity("fail") }
5155
onRuntimeOnly { severity("fail") }

0 commit comments

Comments
 (0)