From ffd82662b7db9100d6351c1720fcdc3f6fbdf563 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Tue, 23 Jan 2018 16:51:16 +0000 Subject: [PATCH] Fix dependencies in Gradle for standalone tests --- samples/standalone/webclient/http-client/build.gradle | 2 +- samples/standalone/webclient/http-server/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/standalone/webclient/http-client/build.gradle b/samples/standalone/webclient/http-client/build.gradle index 7aa9774864..9c279fe45c 100644 --- a/samples/standalone/webclient/http-client/build.gradle +++ b/samples/standalone/webclient/http-client/build.gradle @@ -41,7 +41,7 @@ dependencies { testCompile 'org.springframework.cloud:spring-cloud-contract-wiremock' testCompile 'org.springframework.cloud:spring-cloud-starter-contract-stub-runner' testCompile "org.springframework.boot:spring-boot-starter-test" - testCompile "com.example:http-server-restdocs:0.0.1-SNAPSHOT:stubs" + testCompile "com.example:http-server-webclient:0.0.1-SNAPSHOT:stubs" } test { diff --git a/samples/standalone/webclient/http-server/build.gradle b/samples/standalone/webclient/http-server/build.gradle index dee33d22da..c4d537bdd6 100644 --- a/samples/standalone/webclient/http-server/build.gradle +++ b/samples/standalone/webclient/http-server/build.gradle @@ -39,7 +39,7 @@ dependencyManagement { } dependencies { - compile("org.springframework.boot:spring-boot-starter-web") + compile("org.springframework.boot:spring-boot-starter-webflux") compile("org.springframework.boot:spring-boot-starter-actuator") testCompile 'org.springframework.boot:spring-boot-starter-test'