Skip to content

Commit 2e132bd

Browse files
committed
Disable annotation processing warning in spring-test
This commit disables warnings for annotation processing in spring-test in order to get the build passing again after it mysteriously started failing in 2020.
1 parent 3cbd4a9 commit 2e132bd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -983,6 +983,10 @@ project("spring-websocket") {
983983
project("spring-test") {
984984
description = "Spring TestContext Framework"
985985

986+
// Disable warning for annotation processing in order to get the
987+
// build passing again after it mysteriously started failing in 2020.
988+
compileJava.options.compilerArgs -= "-Xlint:processing"
989+
986990
dependencies {
987991
compile(project(":spring-core"))
988992
optional(project(":spring-aop"))

0 commit comments

Comments
 (0)