Skip to content

Commit 2a2323d

Browse files
Change dependency-analysis plugin to fail mode (#3171)
Motivation: All warnings from dependency-analysis plugin were addressed in prior PRs. We can enable the `fail` mode now. Modifications: - Change dependency-analysis plugin mode from `warn` to `fail`. Result: PRQ pipeline will fail if a new PR introduces warnings for dependencies.
1 parent 46d56ea commit 2a2323d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ if (JavaVersion.current().isJava11Compatible()) {
6666
issues {
6767
all {
6868
onAny {
69-
severity("warn") // FIXME: switch to "fail" when all issues are addressed
69+
severity("fail")
7070
}
7171
onUnusedDependencies {
7272
// We use it for log4j2.xml configuration

0 commit comments

Comments
 (0)