Browse Source

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.
pull/25592/head
Sam Brannen 6 years ago
parent
commit
2e132bd62b
  1. 4
      build.gradle

4
build.gradle

@ -983,6 +983,10 @@ project("spring-websocket") { @@ -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"))

Loading…
Cancel
Save