Prohibit unwanted dependencies in all modules not just starters

Closes gh-28658
This commit is contained in:
Andy Wilkinson
2021-11-12 17:54:32 +00:00
parent 0889cdd516
commit 2cec3971d7
43 changed files with 429 additions and 136 deletions

View File

@@ -21,7 +21,9 @@ dependencies {
intTestImplementation(enforcedPlatform(project(path: ":spring-boot-project:spring-boot-parent")))
intTestImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
intTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
intTestImplementation("org.apache.httpcomponents:httpasyncclient")
intTestImplementation("org.apache.httpcomponents:httpasyncclient") {
exclude group: "commons-logging", module: "commons-logging"
}
intTestImplementation("org.awaitility:awaitility")
intTestImplementation("org.testcontainers:junit-jupiter")
intTestImplementation("org.testcontainers:testcontainers")