Add nullability annotations to tests in module/spring-boot-data-cassandra-test
See gh-47263
This commit is contained in:
parent
0f41e906b9
commit
64aad6d060
|
@ -44,3 +44,11 @@ dependencies {
|
||||||
|
|
||||||
testRuntimeOnly("ch.qos.logback:logback-classic")
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tasks.named("compileTestJava") {
|
||||||
|
options.nullability.checking = "tests"
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.named("compileDockerTestJava") {
|
||||||
|
options.nullability.checking = "tests"
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue