Browse Source

Fix snapshot build failure related to reactor-netty

Closes gh-8909
pull/8899/head
Joe Grandja 5 years ago
parent
commit
f37714a26f
  1. 2
      config/spring-security-config.gradle
  2. 2
      oauth2/oauth2-client/spring-security-oauth2-client.gradle
  3. 2
      oauth2/oauth2-jose/spring-security-oauth2-jose.gradle
  4. 2
      oauth2/oauth2-resource-server/spring-security-oauth2-resource-server.gradle
  5. 2
      samples/boot/oauth2webclient-webflux/spring-security-samples-boot-oauth2webclient-webflux.gradle
  6. 2
      samples/boot/oauth2webclient/spring-security-samples-boot-oauth2webclient.gradle

2
config/spring-security-config.gradle

@ -47,7 +47,7 @@ dependencies { @@ -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'

2
oauth2/oauth2-client/spring-security-oauth2-client.gradle

@ -18,7 +18,7 @@ dependencies { @@ -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'

2
oauth2/oauth2-jose/spring-security-oauth2-jose.gradle

@ -11,6 +11,6 @@ dependencies { @@ -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'
}

2
oauth2/oauth2-resource-server/spring-security-oauth2-resource-server.gradle

@ -16,6 +16,6 @@ dependencies { @@ -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'
}

2
samples/boot/oauth2webclient-webflux/spring-security-samples-boot-oauth2webclient-webflux.gradle

@ -7,7 +7,7 @@ dependencies { @@ -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'

2
samples/boot/oauth2webclient/spring-security-samples-boot-oauth2webclient.gradle

@ -8,7 +8,7 @@ dependencies { @@ -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'

Loading…
Cancel
Save