Add nullability annotations to tests in module/spring-boot-data-jdbc

See gh-47263
This commit is contained in:
Moritz Halbritter 2025-10-06 11:47:27 +02:00
parent dee42bfe2d
commit ad22bc033f
1 changed files with 5 additions and 0 deletions

View File

@ -56,3 +56,8 @@ dependencies {
tasks.named("compileTestJava") { tasks.named("compileTestJava") {
options.nullability.checking = "tests" options.nullability.checking = "tests"
} }
tasks.named("compileDockerTestJava") {
options.nullability.checking = "tests"
}