Add nullability annotations to tests in smoke-test/spring-boot-smoke-test-web-freemarker

See gh-47263
This commit is contained in:
Moritz Halbritter 2025-10-16 09:54:37 +02:00
parent d394ef7fa0
commit 34b1a89c82
1 changed files with 4 additions and 0 deletions

View File

@ -27,3 +27,7 @@ dependencies {
testImplementation(project(":starter:spring-boot-starter-test"))
testImplementation(project(":starter:spring-boot-starter-webmvc-test"))
}
tasks.named("compileTestJava") {
options.nullability.checking = "tests"
}