File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ dependencies {
52
52
api(project(" :spring-aspects" ))
53
53
api(project(" :spring-context" ))
54
54
api(project(" :spring-context-support" ))
55
+ api(project(" :spring-core-test" ))
55
56
api(project(" :spring-jdbc" ))
56
57
api(project(" :spring-jms" ))
57
58
api(project(" :spring-test" ))
@@ -74,9 +75,9 @@ dependencies {
74
75
api(" org.apache.activemq:activemq-ra:6.1.2" )
75
76
api(" org.apache.commons:commons-dbcp2:2.11.0" )
76
77
api(" org.aspectj:aspectjweaver" )
78
+ api(" org.assertj:assertj-core" )
77
79
api(" org.eclipse.jetty.websocket:jetty-websocket-jetty-api" )
78
80
api(" org.jetbrains.kotlin:kotlin-stdlib" )
81
+ api(" org.junit.jupiter:junit-jupiter-api" )
79
82
80
- implementation(project(" :spring-core-test" ))
81
- implementation(" org.assertj:assertj-core" )
82
83
}
Original file line number Diff line number Diff line change @@ -2,11 +2,10 @@ description = "Spring Core Test"
2
2
3
3
dependencies {
4
4
api(project(" :spring-core" ))
5
- api(" org.assertj:assertj-core" )
6
- api(" org.junit.jupiter:junit-jupiter-api" )
7
- compileOnly(" org.junit.jupiter:junit-jupiter" )
8
- compileOnly(" org.junit.platform:junit-platform-engine" )
9
- compileOnly(" org.junit.platform:junit-platform-launcher" )
5
+ optional(" org.assertj:assertj-core" )
6
+ optional(" org.junit.jupiter:junit-jupiter-api" )
7
+ compileOnly(" org.junit.jupiter:junit-jupiter-params" ) // Used in CompileWithForkedClassLoaderExtension Javadoc
8
+ compileOnly(" org.junit.platform:junit-platform-launcher" ) // Used in CompileWithForkedClassLoaderExtension
10
9
implementation(" com.thoughtworks.qdox:qdox" )
11
10
}
12
11
You can’t perform that action at this time.
0 commit comments