Skip to content

Commit 18fdf4e

Browse files
build(gradle): Enable more dependency analysis rules
Configure the dependency analysis plugin to fail on all rules that currently do not have any findings. Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.io> Co-authored-by: Martin Nonnenmacher <martin.nonnenmacher@doubleopen.io>
1 parent e0694bc commit 18fdf4e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ dependencyAnalysis {
4747

4848
onUsedTransitiveDependencies { severity("ignore") }
4949
onIncorrectConfiguration { severity("fail") }
50-
onCompileOnly { severity("ignore") }
51-
onRuntimeOnly { severity("ignore") }
52-
onUnusedAnnotationProcessors { severity("ignore") }
53-
onRedundantPlugins { severity("ignore") }
50+
onCompileOnly { severity("fail") }
51+
onRuntimeOnly { severity("fail") }
52+
onUnusedAnnotationProcessors { severity("fail") }
53+
onRedundantPlugins { severity("fail") }
5454
}
5555

5656
val cliCommandRegex = Regex("^cli.*|.*-command$")

0 commit comments

Comments
 (0)