From f37714a26fb2cc8a93cb1d5259a00c4c0934dd59 Mon Sep 17 00:00:00 2001 From: Joe Grandja Date: Tue, 4 Aug 2020 14:17:03 -0400 Subject: [PATCH] Fix snapshot build failure related to reactor-netty Closes gh-8909 --- config/spring-security-config.gradle | 2 +- oauth2/oauth2-client/spring-security-oauth2-client.gradle | 2 +- oauth2/oauth2-jose/spring-security-oauth2-jose.gradle | 2 +- .../spring-security-oauth2-resource-server.gradle | 2 +- .../spring-security-samples-boot-oauth2webclient-webflux.gradle | 2 +- .../spring-security-samples-boot-oauth2webclient.gradle | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/spring-security-config.gradle b/config/spring-security-config.gradle index d641eda0ab..37d435e31d 100644 --- a/config/spring-security-config.gradle +++ b/config/spring-security-config.gradle @@ -47,7 +47,7 @@ dependencies { testCompile powerMock2Dependencies testCompile 'com.squareup.okhttp3:mockwebserver' testCompile 'ch.qos.logback:logback-classic' - testCompile 'io.projectreactor.netty:reactor-netty' + testCompile 'io.projectreactor.netty:reactor-netty-http' testCompile 'io.rsocket:rsocket-transport-netty' testCompile 'javax.annotation:jsr250-api:1.0' testCompile 'javax.xml.bind:jaxb-api' diff --git a/oauth2/oauth2-client/spring-security-oauth2-client.gradle b/oauth2/oauth2-client/spring-security-oauth2-client.gradle index 6e17822390..1471906884 100644 --- a/oauth2/oauth2-client/spring-security-oauth2-client.gradle +++ b/oauth2/oauth2-client/spring-security-oauth2-client.gradle @@ -18,7 +18,7 @@ dependencies { testCompile project(path: ':spring-security-oauth2-jose', configuration: 'tests') testCompile powerMock2Dependencies testCompile 'com.squareup.okhttp3:mockwebserver' - testCompile 'io.projectreactor.netty:reactor-netty' + testCompile 'io.projectreactor.netty:reactor-netty-http' testCompile 'io.projectreactor:reactor-test' testCompile 'io.projectreactor.tools:blockhound' testCompile 'org.skyscreamer:jsonassert' diff --git a/oauth2/oauth2-jose/spring-security-oauth2-jose.gradle b/oauth2/oauth2-jose/spring-security-oauth2-jose.gradle index ff521ca88e..768c779031 100644 --- a/oauth2/oauth2-jose/spring-security-oauth2-jose.gradle +++ b/oauth2/oauth2-jose/spring-security-oauth2-jose.gradle @@ -11,6 +11,6 @@ dependencies { testCompile powerMock2Dependencies testCompile 'com.squareup.okhttp3:mockwebserver' - testCompile 'io.projectreactor.netty:reactor-netty' + testCompile 'io.projectreactor.netty:reactor-netty-http' testCompile 'com.fasterxml.jackson.core:jackson-databind' } diff --git a/oauth2/oauth2-resource-server/spring-security-oauth2-resource-server.gradle b/oauth2/oauth2-resource-server/spring-security-oauth2-resource-server.gradle index 3cfcaebefc..a3ab3a42ef 100644 --- a/oauth2/oauth2-resource-server/spring-security-oauth2-resource-server.gradle +++ b/oauth2/oauth2-resource-server/spring-security-oauth2-resource-server.gradle @@ -16,6 +16,6 @@ dependencies { testCompile project(path: ':spring-security-oauth2-jose', configuration: 'tests') testCompile 'com.squareup.okhttp3:mockwebserver' testCompile 'com.fasterxml.jackson.core:jackson-databind' - testCompile 'io.projectreactor.netty:reactor-netty' + testCompile 'io.projectreactor.netty:reactor-netty-http' testCompile 'io.projectreactor:reactor-test' } diff --git a/samples/boot/oauth2webclient-webflux/spring-security-samples-boot-oauth2webclient-webflux.gradle b/samples/boot/oauth2webclient-webflux/spring-security-samples-boot-oauth2webclient-webflux.gradle index 286f80a581..c2007fc8d8 100644 --- a/samples/boot/oauth2webclient-webflux/spring-security-samples-boot-oauth2webclient-webflux.gradle +++ b/samples/boot/oauth2webclient-webflux/spring-security-samples-boot-oauth2webclient-webflux.gradle @@ -7,7 +7,7 @@ dependencies { compile 'org.springframework.boot:spring-boot-starter-thymeleaf' compile 'org.springframework.boot:spring-boot-starter-webflux' compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5' - compile 'io.projectreactor.netty:reactor-netty' + compile 'io.projectreactor.netty:reactor-netty-http' testCompile project(':spring-security-test') testCompile 'org.springframework.boot:spring-boot-starter-test' diff --git a/samples/boot/oauth2webclient/spring-security-samples-boot-oauth2webclient.gradle b/samples/boot/oauth2webclient/spring-security-samples-boot-oauth2webclient.gradle index f65d82709c..9292014e08 100644 --- a/samples/boot/oauth2webclient/spring-security-samples-boot-oauth2webclient.gradle +++ b/samples/boot/oauth2webclient/spring-security-samples-boot-oauth2webclient.gradle @@ -8,7 +8,7 @@ dependencies { compile 'org.springframework.boot:spring-boot-starter-thymeleaf' compile 'org.springframework.boot:spring-boot-starter-web' compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5' - compile 'io.projectreactor.netty:reactor-netty' + compile 'io.projectreactor.netty:reactor-netty-http' testCompile project(':spring-security-test') testCompile 'org.springframework.boot:spring-boot-starter-test'