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 @@ -45,6 +45,7 @@ dependencies {
45
45
api(project(" :spring-aspects" ))
46
46
api(project(" :spring-context" ))
47
47
api(project(" :spring-context-support" ))
48
+ api(project(" :spring-core-test" ))
48
49
api(project(" :spring-jdbc" ))
49
50
api(project(" :spring-jms" ))
50
51
api(project(" :spring-test" ))
@@ -66,9 +67,9 @@ dependencies {
66
67
api(" org.apache.activemq:activemq-ra:6.1.2" )
67
68
api(" org.apache.commons:commons-dbcp2:2.11.0" )
68
69
api(" org.aspectj:aspectjweaver" )
70
+ api(" org.assertj:assertj-core" )
69
71
api(" org.eclipse.jetty.websocket:jetty-websocket-jetty-api" )
70
72
api(" org.jetbrains.kotlin:kotlin-stdlib" )
73
+ api(" org.junit.jupiter:junit-jupiter-api" )
71
74
72
- implementation(project(" :spring-core-test" ))
73
- implementation(" org.assertj:assertj-core" )
74
75
}
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