Browse Source

Add nullability annotations to tests in module/spring-boot-mail

See gh-47263
pull/47626/head
Moritz Halbritter 2 months ago
parent
commit
2f877a7415
  1. 8
      module/spring-boot-mail/build.gradle

8
module/spring-boot-mail/build.gradle

@ -48,3 +48,11 @@ dependencies { @@ -48,3 +48,11 @@ dependencies {
testRuntimeOnly("ch.qos.logback:logback-classic")
}
tasks.named("compileTestJava") {
options.nullability.checking = "tests"
}
tasks.named("compileDockerTestJava") {
options.nullability.checking = "tests"
}

Loading…
Cancel
Save