Skip to content

Commit fd1053a

Browse files
committed
Add nullability annotations to tests in system-test/spring-boot-deployment-system-test
See gh-47263
1 parent 41dc036 commit fd1053a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

system-test/spring-boot-deployment-system-tests/build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,12 @@ systemTest {
5757

5858
war {
5959
archiveVersion = ''
60-
}
60+
}
61+
62+
tasks.named("compileTestJava") {
63+
options.nullability.checking = "tests"
64+
}
65+
66+
tasks.named("compileSystemTestJava") {
67+
options.nullability.checking = "tests"
68+
}

0 commit comments

Comments
 (0)