diff --git a/smoke-test/spring-boot-smoke-test-actuator-custom-security/build.gradle b/smoke-test/spring-boot-smoke-test-actuator-custom-security/build.gradle index 46cdbf1feea..7e4a823db37 100644 --- a/smoke-test/spring-boot-smoke-test-actuator-custom-security/build.gradle +++ b/smoke-test/spring-boot-smoke-test-actuator-custom-security/build.gradle @@ -26,6 +26,7 @@ dependencies { implementation(project(":starter:spring-boot-starter-security")) implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testRuntimeOnly("org.apache.httpcomponents.client5:httpclient5") diff --git a/smoke-test/spring-boot-smoke-test-actuator-extension/build.gradle b/smoke-test/spring-boot-smoke-test-actuator-extension/build.gradle index c1f1112d055..66306dcb902 100644 --- a/smoke-test/spring-boot-smoke-test-actuator-extension/build.gradle +++ b/smoke-test/spring-boot-smoke-test-actuator-extension/build.gradle @@ -24,5 +24,6 @@ dependencies { implementation(project(":starter:spring-boot-starter-actuator")) implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } \ No newline at end of file diff --git a/smoke-test/spring-boot-smoke-test-actuator-ui/build.gradle b/smoke-test/spring-boot-smoke-test-actuator-ui/build.gradle index bd691a9c6e3..9a3b8c97003 100644 --- a/smoke-test/spring-boot-smoke-test-actuator-ui/build.gradle +++ b/smoke-test/spring-boot-smoke-test-actuator-ui/build.gradle @@ -26,5 +26,6 @@ dependencies { implementation(project(":starter:spring-boot-starter-security")) implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } \ No newline at end of file diff --git a/smoke-test/spring-boot-smoke-test-actuator/build.gradle b/smoke-test/spring-boot-smoke-test-actuator/build.gradle index 3b0bdd9caf9..64520a27347 100644 --- a/smoke-test/spring-boot-smoke-test-actuator/build.gradle +++ b/smoke-test/spring-boot-smoke-test-actuator/build.gradle @@ -30,6 +30,7 @@ dependencies { runtimeOnly("com.h2database:h2") + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testRuntimeOnly("org.apache.httpcomponents.client5:httpclient5") } \ No newline at end of file diff --git a/smoke-test/spring-boot-smoke-test-devtools/build.gradle b/smoke-test/spring-boot-smoke-test-devtools/build.gradle index c89a5acd63e..81d31c52a06 100644 --- a/smoke-test/spring-boot-smoke-test-devtools/build.gradle +++ b/smoke-test/spring-boot-smoke-test-devtools/build.gradle @@ -30,5 +30,6 @@ dependencies { implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-hateoas/build.gradle b/smoke-test/spring-boot-smoke-test-hateoas/build.gradle index 39d41b47e11..cd2ec6169aa 100644 --- a/smoke-test/spring-boot-smoke-test-hateoas/build.gradle +++ b/smoke-test/spring-boot-smoke-test-hateoas/build.gradle @@ -23,5 +23,6 @@ description = "Spring Boot HATEOAS smoke test" dependencies { implementation(project(":starter:spring-boot-starter-hateoas")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-jersey/build.gradle b/smoke-test/spring-boot-smoke-test-jersey/build.gradle index 5eb89ef3e97..87f30aff76a 100644 --- a/smoke-test/spring-boot-smoke-test-jersey/build.gradle +++ b/smoke-test/spring-boot-smoke-test-jersey/build.gradle @@ -27,5 +27,6 @@ dependencies { runtimeOnly("jakarta.xml.bind:jakarta.xml.bind-api") + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-jetty-jsp/build.gradle b/smoke-test/spring-boot-smoke-test-jetty-jsp/build.gradle index f4a2cf5696e..4affa544a8e 100644 --- a/smoke-test/spring-boot-smoke-test-jetty-jsp/build.gradle +++ b/smoke-test/spring-boot-smoke-test-jetty-jsp/build.gradle @@ -37,6 +37,7 @@ dependencies { runtimeOnly("org.glassfish.web:jakarta.servlet.jsp.jstl") - testImplementation(project(":starter:spring-boot-starter-test")) testImplementation(project(":starter:spring-boot-starter-jetty")) + testImplementation(project(":starter:spring-boot-starter-restclient")) + testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-jetty-ssl/build.gradle b/smoke-test/spring-boot-smoke-test-jetty-ssl/build.gradle index 124e681f55f..c9d4c898a4e 100644 --- a/smoke-test/spring-boot-smoke-test-jetty-ssl/build.gradle +++ b/smoke-test/spring-boot-smoke-test-jetty-ssl/build.gradle @@ -26,6 +26,7 @@ dependencies { exclude module: "spring-boot-starter-tomcat" } + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testRuntimeOnly("org.apache.httpcomponents.client5:httpclient5") diff --git a/smoke-test/spring-boot-smoke-test-jetty/build.gradle b/smoke-test/spring-boot-smoke-test-jetty/build.gradle index f1cb4f35b51..b7f3e277e08 100644 --- a/smoke-test/spring-boot-smoke-test-jetty/build.gradle +++ b/smoke-test/spring-boot-smoke-test-jetty/build.gradle @@ -26,5 +26,6 @@ dependencies { } implementation(project(":starter:spring-boot-starter-jetty")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-oauth2-authorization-server/build.gradle b/smoke-test/spring-boot-smoke-test-oauth2-authorization-server/build.gradle index bb5f3c69d4f..0f94febf7a7 100644 --- a/smoke-test/spring-boot-smoke-test-oauth2-authorization-server/build.gradle +++ b/smoke-test/spring-boot-smoke-test-oauth2-authorization-server/build.gradle @@ -23,6 +23,7 @@ description = "Spring Boot OAuth2 Authorization Server smoke test" dependencies { implementation(project(":starter:spring-boot-starter-security-oauth2-authorization-server")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testImplementation("org.apache.httpcomponents.client5:httpclient5") } diff --git a/smoke-test/spring-boot-smoke-test-oauth2-client/build.gradle b/smoke-test/spring-boot-smoke-test-oauth2-client/build.gradle index f34ce4b885e..6982d6b57f4 100644 --- a/smoke-test/spring-boot-smoke-test-oauth2-client/build.gradle +++ b/smoke-test/spring-boot-smoke-test-oauth2-client/build.gradle @@ -24,6 +24,7 @@ dependencies { implementation(project(":starter:spring-boot-starter-security-oauth2-client")) implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testImplementation("org.apache.httpcomponents.client5:httpclient5") } diff --git a/smoke-test/spring-boot-smoke-test-oauth2-resource-server/build.gradle b/smoke-test/spring-boot-smoke-test-oauth2-resource-server/build.gradle index c849aaca2fe..a2e1aa81205 100644 --- a/smoke-test/spring-boot-smoke-test-oauth2-resource-server/build.gradle +++ b/smoke-test/spring-boot-smoke-test-oauth2-resource-server/build.gradle @@ -24,6 +24,7 @@ dependencies { implementation(project(":starter:spring-boot-starter-security-oauth2-resource-server")) implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testImplementation("com.squareup.okhttp3:mockwebserver") } diff --git a/smoke-test/spring-boot-smoke-test-prometheus/build.gradle b/smoke-test/spring-boot-smoke-test-prometheus/build.gradle index 6e1c8d7e61d..89b1655509d 100644 --- a/smoke-test/spring-boot-smoke-test-prometheus/build.gradle +++ b/smoke-test/spring-boot-smoke-test-prometheus/build.gradle @@ -27,5 +27,6 @@ dependencies { runtimeOnly('io.micrometer:micrometer-registry-prometheus') + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-quartz/build.gradle b/smoke-test/spring-boot-smoke-test-quartz/build.gradle index 4186cdd69a5..12e900c0583 100644 --- a/smoke-test/spring-boot-smoke-test-quartz/build.gradle +++ b/smoke-test/spring-boot-smoke-test-quartz/build.gradle @@ -28,6 +28,7 @@ dependencies { runtimeOnly("com.h2database:h2") + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testImplementation("org.awaitility:awaitility") } diff --git a/smoke-test/spring-boot-smoke-test-saml2-service-provider/build.gradle b/smoke-test/spring-boot-smoke-test-saml2-service-provider/build.gradle index cbf842d5067..b160e5da9bd 100644 --- a/smoke-test/spring-boot-smoke-test-saml2-service-provider/build.gradle +++ b/smoke-test/spring-boot-smoke-test-saml2-service-provider/build.gradle @@ -32,6 +32,7 @@ dependencies { implementation(project(":starter:spring-boot-starter-security-saml2")) implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testImplementation("org.apache.httpcomponents.client5:httpclient5") } diff --git a/smoke-test/spring-boot-smoke-test-secure-jersey/build.gradle b/smoke-test/spring-boot-smoke-test-secure-jersey/build.gradle index f75c9c18c2c..aa40f67180e 100644 --- a/smoke-test/spring-boot-smoke-test-secure-jersey/build.gradle +++ b/smoke-test/spring-boot-smoke-test-secure-jersey/build.gradle @@ -25,5 +25,6 @@ dependencies { implementation(project(":starter:spring-boot-starter-jersey")) implementation(project(":starter:spring-boot-starter-security")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-servlet/build.gradle b/smoke-test/spring-boot-smoke-test-servlet/build.gradle index 0b8cf0f642d..001350c44ab 100644 --- a/smoke-test/spring-boot-smoke-test-servlet/build.gradle +++ b/smoke-test/spring-boot-smoke-test-servlet/build.gradle @@ -25,6 +25,7 @@ dependencies { implementation(project(":starter:spring-boot-starter-security")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testRuntimeOnly(project(":starter:spring-boot-starter-tomcat")) diff --git a/smoke-test/spring-boot-smoke-test-session-hazelcast/build.gradle b/smoke-test/spring-boot-smoke-test-session-hazelcast/build.gradle index cbc87946907..15f4129e35a 100644 --- a/smoke-test/spring-boot-smoke-test-session-hazelcast/build.gradle +++ b/smoke-test/spring-boot-smoke-test-session-hazelcast/build.gradle @@ -26,5 +26,6 @@ dependencies { implementation(project(":starter:spring-boot-starter-session-hazelcast")) implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-session-jdbc/build.gradle b/smoke-test/spring-boot-smoke-test-session-jdbc/build.gradle index b00abbd15b2..2f447bee7c8 100644 --- a/smoke-test/spring-boot-smoke-test-session-jdbc/build.gradle +++ b/smoke-test/spring-boot-smoke-test-session-jdbc/build.gradle @@ -29,5 +29,6 @@ dependencies { runtimeOnly(project(":starter:spring-boot-starter-jdbc")) runtimeOnly("com.h2database:h2") + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-tomcat-jsp/build.gradle b/smoke-test/spring-boot-smoke-test-tomcat-jsp/build.gradle index f3da4014e5a..7e752b12364 100644 --- a/smoke-test/spring-boot-smoke-test-tomcat-jsp/build.gradle +++ b/smoke-test/spring-boot-smoke-test-tomcat-jsp/build.gradle @@ -33,5 +33,6 @@ dependencies { providedRuntime("org.glassfish.web:jakarta.servlet.jsp.jstl") providedRuntime("org.apache.tomcat.embed:tomcat-embed-jasper") + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-tomcat-multi-connectors/build.gradle b/smoke-test/spring-boot-smoke-test-tomcat-multi-connectors/build.gradle index 1af3f953315..e3146d5407c 100644 --- a/smoke-test/spring-boot-smoke-test-tomcat-multi-connectors/build.gradle +++ b/smoke-test/spring-boot-smoke-test-tomcat-multi-connectors/build.gradle @@ -23,6 +23,7 @@ description = "Spring Boot Tomcat multi-connectors smoke test" dependencies { implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testImplementation("org.apache.httpcomponents.client5:httpclient5") } diff --git a/smoke-test/spring-boot-smoke-test-tomcat-ssl/build.gradle b/smoke-test/spring-boot-smoke-test-tomcat-ssl/build.gradle index beab0607b6b..ef7da56be0b 100644 --- a/smoke-test/spring-boot-smoke-test-tomcat-ssl/build.gradle +++ b/smoke-test/spring-boot-smoke-test-tomcat-ssl/build.gradle @@ -24,6 +24,7 @@ dependencies { implementation(project(":starter:spring-boot-starter-webmvc")) implementation(project(":starter:spring-boot-starter-actuator")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testImplementation("org.apache.httpcomponents.client5:httpclient5") } diff --git a/smoke-test/spring-boot-smoke-test-tomcat/build.gradle b/smoke-test/spring-boot-smoke-test-tomcat/build.gradle index 2c5c60bb369..7b17f4a7d3e 100644 --- a/smoke-test/spring-boot-smoke-test-tomcat/build.gradle +++ b/smoke-test/spring-boot-smoke-test-tomcat/build.gradle @@ -23,5 +23,6 @@ description = "Spring Boot Tomcat smoke test" dependencies { implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-traditional/build.gradle b/smoke-test/spring-boot-smoke-test-traditional/build.gradle index bac7d0d4361..fa1d668182f 100644 --- a/smoke-test/spring-boot-smoke-test-traditional/build.gradle +++ b/smoke-test/spring-boot-smoke-test-traditional/build.gradle @@ -33,6 +33,7 @@ dependencies { providedRuntime(project(":starter:spring-boot-starter-tomcat")) providedRuntime("org.apache.tomcat.embed:tomcat-embed-jasper") + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testImplementation("org.apache.httpcomponents.client5:httpclient5") } diff --git a/smoke-test/spring-boot-smoke-test-undertow-ssl/build.gradle b/smoke-test/spring-boot-smoke-test-undertow-ssl/build.gradle index 647e9a8dc39..9e0e40d015e 100644 --- a/smoke-test/spring-boot-smoke-test-undertow-ssl/build.gradle +++ b/smoke-test/spring-boot-smoke-test-undertow-ssl/build.gradle @@ -26,6 +26,7 @@ dependencies { } implementation(project(":starter:spring-boot-starter-undertow")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testImplementation("org.apache.httpcomponents.client5:httpclient5") } diff --git a/smoke-test/spring-boot-smoke-test-undertow/build.gradle b/smoke-test/spring-boot-smoke-test-undertow/build.gradle index 5b53abe0fab..944f37a2215 100644 --- a/smoke-test/spring-boot-smoke-test-undertow/build.gradle +++ b/smoke-test/spring-boot-smoke-test-undertow/build.gradle @@ -26,5 +26,6 @@ dependencies { } implementation(project(":starter:spring-boot-starter-undertow")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-web-freemarker/build.gradle b/smoke-test/spring-boot-smoke-test-web-freemarker/build.gradle index d8c63cbd3a1..3d089218566 100644 --- a/smoke-test/spring-boot-smoke-test-web-freemarker/build.gradle +++ b/smoke-test/spring-boot-smoke-test-web-freemarker/build.gradle @@ -24,5 +24,6 @@ dependencies { implementation(project(":starter:spring-boot-starter-freemarker")) implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-web-groovy-templates/build.gradle b/smoke-test/spring-boot-smoke-test-web-groovy-templates/build.gradle index b22ee57377a..30ba5c4fc43 100644 --- a/smoke-test/spring-boot-smoke-test-web-groovy-templates/build.gradle +++ b/smoke-test/spring-boot-smoke-test-web-groovy-templates/build.gradle @@ -26,5 +26,6 @@ dependencies { implementation(project(":starter:spring-boot-starter-webmvc")) implementation("jakarta.xml.bind:jakarta.xml.bind-api") + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-web-jsp/build.gradle b/smoke-test/spring-boot-smoke-test-web-jsp/build.gradle index 003c2d3fd20..2593e33a303 100644 --- a/smoke-test/spring-boot-smoke-test-web-jsp/build.gradle +++ b/smoke-test/spring-boot-smoke-test-web-jsp/build.gradle @@ -33,5 +33,6 @@ dependencies { providedRuntime("org.glassfish.web:jakarta.servlet.jsp.jstl") providedRuntime("org.apache.tomcat.embed:tomcat-embed-jasper") + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-web-method-security/build.gradle b/smoke-test/spring-boot-smoke-test-web-method-security/build.gradle index 12c16125749..e95a4d8d0fe 100644 --- a/smoke-test/spring-boot-smoke-test-web-method-security/build.gradle +++ b/smoke-test/spring-boot-smoke-test-web-method-security/build.gradle @@ -25,5 +25,6 @@ dependencies { implementation(project(":starter:spring-boot-starter-security")) implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-web-mustache/build.gradle b/smoke-test/spring-boot-smoke-test-web-mustache/build.gradle index f2869cf744a..d02c9196739 100644 --- a/smoke-test/spring-boot-smoke-test-web-mustache/build.gradle +++ b/smoke-test/spring-boot-smoke-test-web-mustache/build.gradle @@ -24,5 +24,6 @@ dependencies { implementation(project(":starter:spring-boot-starter-mustache")) implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-web-secure-custom/build.gradle b/smoke-test/spring-boot-smoke-test-web-secure-custom/build.gradle index 82c1c322766..a0b9350de61 100644 --- a/smoke-test/spring-boot-smoke-test-web-secure-custom/build.gradle +++ b/smoke-test/spring-boot-smoke-test-web-secure-custom/build.gradle @@ -24,6 +24,7 @@ dependencies { implementation(project(":starter:spring-boot-starter-security")) implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testImplementation("org.apache.httpcomponents.client5:httpclient5") } diff --git a/smoke-test/spring-boot-smoke-test-web-secure-jdbc/build.gradle b/smoke-test/spring-boot-smoke-test-web-secure-jdbc/build.gradle index 9cddd70693b..f2e8d50c4c8 100644 --- a/smoke-test/spring-boot-smoke-test-web-secure-jdbc/build.gradle +++ b/smoke-test/spring-boot-smoke-test-web-secure-jdbc/build.gradle @@ -27,6 +27,7 @@ dependencies { runtimeOnly("com.h2database:h2") + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testImplementation("org.apache.httpcomponents.client5:httpclient5") } diff --git a/smoke-test/spring-boot-smoke-test-web-secure/build.gradle b/smoke-test/spring-boot-smoke-test-web-secure/build.gradle index 109c36c516e..4de28c98e28 100644 --- a/smoke-test/spring-boot-smoke-test-web-secure/build.gradle +++ b/smoke-test/spring-boot-smoke-test-web-secure/build.gradle @@ -24,6 +24,7 @@ dependencies { implementation(project(":starter:spring-boot-starter-security")) implementation(project(":starter:spring-boot-starter-webmvc")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testImplementation("org.apache.httpcomponents.client5:httpclient5") } diff --git a/smoke-test/spring-boot-smoke-test-web-static/build.gradle b/smoke-test/spring-boot-smoke-test-web-static/build.gradle index d508abda5cb..25715616b52 100644 --- a/smoke-test/spring-boot-smoke-test-web-static/build.gradle +++ b/smoke-test/spring-boot-smoke-test-web-static/build.gradle @@ -34,5 +34,6 @@ dependencies { runtimeOnly("org.webjars:bootstrap:3.0.3") runtimeOnly("org.webjars:jquery:2.0.3-1") + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-web-thymeleaf/build.gradle b/smoke-test/spring-boot-smoke-test-web-thymeleaf/build.gradle index 226e2ee75d9..4b8b5bcde19 100644 --- a/smoke-test/spring-boot-smoke-test-web-thymeleaf/build.gradle +++ b/smoke-test/spring-boot-smoke-test-web-thymeleaf/build.gradle @@ -25,5 +25,6 @@ dependencies { implementation(project(":starter:spring-boot-starter-webmvc")) implementation(project(":starter:spring-boot-starter-validation")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) } diff --git a/smoke-test/spring-boot-smoke-test-webflux/build.gradle b/smoke-test/spring-boot-smoke-test-webflux/build.gradle index 374e02fdb02..430c0327cc6 100644 --- a/smoke-test/spring-boot-smoke-test-webflux/build.gradle +++ b/smoke-test/spring-boot-smoke-test-webflux/build.gradle @@ -24,6 +24,7 @@ dependencies { implementation(project(":starter:spring-boot-starter-actuator")) implementation(project(":starter:spring-boot-starter-webflux")) + testImplementation(project(":starter:spring-boot-starter-restclient")) testImplementation(project(":starter:spring-boot-starter-test")) testImplementation("io.projectreactor:reactor-test") } diff --git a/starter/spring-boot-starter-test/build.gradle b/starter/spring-boot-starter-test/build.gradle index 2b77b4c36eb..a5eddbf1fae 100644 --- a/starter/spring-boot-starter-test/build.gradle +++ b/starter/spring-boot-starter-test/build.gradle @@ -25,21 +25,9 @@ dependencies { api(project(":core:spring-boot-test")) - api(project(":module:spring-boot-http-client")) { - transitive = false - } - api(project(":module:spring-boot-http-codec")) { - transitive = false - } - api(project(":module:spring-boot-restclient")) { - transitive = false - } api(project(":module:spring-boot-restclient-test")) api(project(":module:spring-boot-test-autoconfigure")) api(project(":module:spring-boot-web-server-test")) - api(project(":module:spring-boot-webclient")) { - transitive = false - } api("com.jayway.jsonpath:json-path") api("jakarta.xml.bind:jakarta.xml.bind-api") diff --git a/system-test/spring-boot-deployment-system-tests/build.gradle b/system-test/spring-boot-deployment-system-tests/build.gradle index 8d7e02846e6..bf44c458cda 100644 --- a/system-test/spring-boot-deployment-system-tests/build.gradle +++ b/system-test/spring-boot-deployment-system-tests/build.gradle @@ -41,6 +41,7 @@ dependencies { implementation(project(":starter:spring-boot-starter-actuator")) systemTestImplementation(enforcedPlatform(project(path: ":platform:spring-boot-internal-dependencies"))) + systemTestImplementation(project(":starter:spring-boot-starter-restclient")) systemTestImplementation(project(":starter:spring-boot-starter-test")) systemTestImplementation(project(":test-support:spring-boot-test-support")) systemTestImplementation("org.apache.httpcomponents.client5:httpclient5")