mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
46fb7c026c
This commit also replaces Arch Unit packageInfoShouldBeNullMarked() rule by either configuring requireExplicitNullMarking = false when the whole module does not have JSpecify annotations, or explicit @NullUnmarked when some have and some don't. See gh-36054
14 lines
414 B
Groovy
14 lines
414 B
Groovy
description = "Spring Context Indexer"
|
|
|
|
dependencies {
|
|
testImplementation(project(":spring-context"))
|
|
testImplementation("jakarta.annotation:jakarta.annotation-api")
|
|
testImplementation("jakarta.inject:jakarta.inject-api")
|
|
testImplementation("jakarta.persistence:jakarta.persistence-api")
|
|
testImplementation("jakarta.transaction:jakarta.transaction-api")
|
|
}
|
|
|
|
nullability {
|
|
requireExplicitNullMarking = false
|
|
}
|