From 2e132bd62b51bc8c6dccc9ea7f1d0c21931eca8e Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 13 Jan 2020 14:31:25 +0100 Subject: [PATCH] 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. --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index 079a6f56dc1..c9194934cbb 100644 --- a/build.gradle +++ b/build.gradle @@ -983,6 +983,10 @@ project("spring-websocket") { project("spring-test") { description = "Spring TestContext Framework" + // Disable warning for annotation processing in order to get the + // build passing again after it mysteriously started failing in 2020. + compileJava.options.compilerArgs -= "-Xlint:processing" + dependencies { compile(project(":spring-core")) optional(project(":spring-aop"))