File tree 5 files changed +2
-7
lines changed
5 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -80,9 +80,6 @@ configure([rootProject] + javaProjects) { project ->
80
80
testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
81
81
testRuntimeOnly(" org.junit.platform:junit-platform-suite-engine" )
82
82
testRuntimeOnly(" org.apache.logging.log4j:log4j-core" )
83
- // JSR-305 only used for non-required meta-annotations
84
- compileOnly(" com.google.code.findbugs:jsr305" )
85
- testCompileOnly(" com.google.code.findbugs:jsr305" )
86
83
}
87
84
88
85
ext. javadocLinks = [
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ apply plugin: "kotlin"
5
5
dependencies {
6
6
api(project(" :spring-beans" ))
7
7
api(project(" :spring-core" ))
8
+ compileOnly(" com.google.code.findbugs:jsr305" ) // for the AOP Alliance fork
8
9
optional(" org.apache.commons:commons-pool2" )
9
10
optional(" org.aspectj:aspectjweaver" )
10
11
optional(" org.jetbrains.kotlinx:kotlinx-coroutines-reactor" )
11
12
testFixturesImplementation(testFixtures(project(" :spring-beans" )))
12
13
testFixturesImplementation(testFixtures(project(" :spring-core" )))
13
- testFixturesImplementation(" com.google.code.findbugs:jsr305" )
14
14
testImplementation(project(" :spring-core-test" ))
15
15
testImplementation(testFixtures(project(" :spring-beans" )))
16
16
testImplementation(testFixtures(project(" :spring-core" )))
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ dependencies {
11
11
optional(" org.reactivestreams:reactive-streams" )
12
12
optional(" org.yaml:snakeyaml" )
13
13
testFixturesApi(" org.junit.jupiter:junit-jupiter-api" )
14
- testFixturesImplementation(" com.google.code.findbugs:jsr305" )
15
14
testFixturesImplementation(" org.assertj:assertj-core" )
16
15
testImplementation(project(" :spring-core-test" ))
17
16
testImplementation(testFixtures(project(" :spring-core" )))
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ dependencies {
33
33
optional(" org.reactivestreams:reactive-streams" )
34
34
testFixturesApi(" org.junit.jupiter:junit-jupiter-api" )
35
35
testFixturesImplementation(testFixtures(project(" :spring-beans" )))
36
- testFixturesImplementation(" com.google.code.findbugs:jsr305" )
37
36
testFixturesImplementation(" io.projectreactor:reactor-test" )
38
37
testFixturesImplementation(" org.assertj:assertj-core" )
39
38
testImplementation(project(" :spring-core-test" ))
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ dependencies {
72
72
api(files(objenesisRepackJar))
73
73
api(" commons-logging:commons-logging" )
74
74
api(" org.jspecify:jspecify" )
75
+ compileOnly(" com.google.code.findbugs:jsr305" )
75
76
compileOnly(" io.projectreactor.tools:blockhound" )
76
77
compileOnly(" org.graalvm.sdk:graal-sdk" )
77
78
optional(" io.micrometer:context-propagation" )
@@ -87,7 +88,6 @@ dependencies {
87
88
optional(" org.jetbrains.kotlin:kotlin-stdlib" )
88
89
optional(" org.jetbrains.kotlinx:kotlinx-coroutines-core" )
89
90
optional(" org.jetbrains.kotlinx:kotlinx-coroutines-reactor" )
90
- testFixturesImplementation(" com.google.code.findbugs:jsr305" )
91
91
testFixturesImplementation(" io.projectreactor:reactor-test" )
92
92
testFixturesImplementation(" org.assertj:assertj-core" )
93
93
testFixturesImplementation(" org.junit.platform:junit-platform-launcher" )
You can’t perform that action at this time.
0 commit comments