Add useful transitive dependencies to spring-boot-test-support

Add more `api` dependencies to `spring-boot-test-support` to reduce
the number of test dependencies needing in sub-modules.
This commit is contained in:
Phillip Webb 2025-03-17 17:23:55 -07:00
parent 71c9f2f862
commit b0f61dccfa
1 changed files with 12 additions and 10 deletions

View File

@ -7,16 +7,26 @@ description = "Spring Boot Testing Support"
dependencies {
api(platform(project(path: ":spring-boot-project:spring-boot-parent")))
api("com.jayway.jsonpath:json-path")
api("org.assertj:assertj-core")
api("org.awaitility:awaitility")
api("org.hamcrest:hamcrest-core")
api("org.hamcrest:hamcrest-library")
api("org.junit.jupiter:junit-jupiter")
api("org.mockito:mockito-core")
api("org.mockito:mockito-junit-jupiter")
api("org.skyscreamer:jsonassert")
api("org.springframework:spring-core")
api("org.springframework:spring-test")
api("org.springframework:spring-core-test")
compileOnly("org.apache.cassandra:java-driver-core") {
exclude(group: "org.slf4j", module: "jcl-over-slf4j")
}
compileOnly("jakarta.servlet:jakarta.servlet-api")
compileOnly("junit:junit")
compileOnly("org.junit.jupiter:junit-jupiter")
compileOnly("org.junit.platform:junit-platform-engine")
compileOnly("org.junit.platform:junit-platform-launcher")
compileOnly("org.mockito:mockito-core")
compileOnly("org.springframework:spring-context")
compileOnly("org.springframework.data:spring-data-redis")
@ -29,17 +39,9 @@ dependencies {
implementation("org.apache.maven.resolver:maven-resolver-transport-http") {
exclude group: "org.slf4j", module: "jcl-over-slf4j"
}
implementation("org.assertj:assertj-core")
implementation("org.hamcrest:hamcrest-core")
implementation("org.hamcrest:hamcrest-library")
implementation("org.springframework:spring-core")
implementation("org.springframework:spring-test")
implementation("org.springframework:spring-core-test")
testImplementation("jakarta.servlet:jakarta.servlet-api")
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.springframework:spring-context")
testRuntimeOnly("org.hibernate.validator:hibernate-validator")
testRuntimeOnly("org.mockito:mockito-core")
}