Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 30a7f7b

Browse files
committedMar 17, 2025·
Merge branch '6.2.x'
2 parents 8ee09e5 + 7a839e9 commit 30a7f7b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

‎framework-docs/framework-docs.gradle

+3-2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ dependencies {
5252
api(project(":spring-aspects"))
5353
api(project(":spring-context"))
5454
api(project(":spring-context-support"))
55+
api(project(":spring-core-test"))
5556
api(project(":spring-jdbc"))
5657
api(project(":spring-jms"))
5758
api(project(":spring-test"))
@@ -74,9 +75,9 @@ dependencies {
7475
api("org.apache.activemq:activemq-ra:6.1.2")
7576
api("org.apache.commons:commons-dbcp2:2.11.0")
7677
api("org.aspectj:aspectjweaver")
78+
api("org.assertj:assertj-core")
7779
api("org.eclipse.jetty.websocket:jetty-websocket-jetty-api")
7880
api("org.jetbrains.kotlin:kotlin-stdlib")
81+
api("org.junit.jupiter:junit-jupiter-api")
7982

80-
implementation(project(":spring-core-test"))
81-
implementation("org.assertj:assertj-core")
8283
}

‎spring-core-test/spring-core-test.gradle

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ description = "Spring Core Test"
22

33
dependencies {
44
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
109
implementation("com.thoughtworks.qdox:qdox")
1110
}
1211

0 commit comments

Comments
 (0)
Please sign in to comment.