Add nullability annotations to tests in system-test/spring-boot-image-system-test

See gh-47263
This commit is contained in:
Moritz Halbritter
2025-10-16 11:24:51 +02:00
parent fd1053ae59
commit a5c8e2b703
@@ -62,3 +62,11 @@ dependencies {
toolchain {
maximumCompatibleJavaVersion = JavaLanguageVersion.of(23)
}
tasks.named("compileTestJava") {
options.nullability.checking = "tests"
}
tasks.named("compileSystemTestJava") {
options.nullability.checking = "tests"
}