Skip to content

Commit 3bc0b8c

Browse files
committed
Revert "Fix snapshot build failure related to reactor-netty"
This reverts commit f37714a.
1 parent f37714a commit 3bc0b8c

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

config/spring-security-config.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ dependencies {
4747
testCompile powerMock2Dependencies
4848
testCompile 'com.squareup.okhttp3:mockwebserver'
4949
testCompile 'ch.qos.logback:logback-classic'
50-
testCompile 'io.projectreactor.netty:reactor-netty-http'
50+
testCompile 'io.projectreactor.netty:reactor-netty'
5151
testCompile 'io.rsocket:rsocket-transport-netty'
5252
testCompile 'javax.annotation:jsr250-api:1.0'
5353
testCompile 'javax.xml.bind:jaxb-api'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies {
1818
testCompile project(path: ':spring-security-oauth2-jose', configuration: 'tests')
1919
testCompile powerMock2Dependencies
2020
testCompile 'com.squareup.okhttp3:mockwebserver'
21-
testCompile 'io.projectreactor.netty:reactor-netty-http'
21+
testCompile 'io.projectreactor.netty:reactor-netty'
2222
testCompile 'io.projectreactor:reactor-test'
2323
testCompile 'io.projectreactor.tools:blockhound'
2424
testCompile 'org.skyscreamer:jsonassert'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ dependencies {
1111

1212
testCompile powerMock2Dependencies
1313
testCompile 'com.squareup.okhttp3:mockwebserver'
14-
testCompile 'io.projectreactor.netty:reactor-netty-http'
14+
testCompile 'io.projectreactor.netty:reactor-netty'
1515
testCompile 'com.fasterxml.jackson.core:jackson-databind'
1616
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ dependencies {
1616
testCompile project(path: ':spring-security-oauth2-jose', configuration: 'tests')
1717
testCompile 'com.squareup.okhttp3:mockwebserver'
1818
testCompile 'com.fasterxml.jackson.core:jackson-databind'
19-
testCompile 'io.projectreactor.netty:reactor-netty-http'
19+
testCompile 'io.projectreactor.netty:reactor-netty'
2020
testCompile 'io.projectreactor:reactor-test'
2121
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
88
compile 'org.springframework.boot:spring-boot-starter-webflux'
99
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
10-
compile 'io.projectreactor.netty:reactor-netty-http'
10+
compile 'io.projectreactor.netty:reactor-netty'
1111

1212
testCompile project(':spring-security-test')
1313
testCompile 'org.springframework.boot:spring-boot-starter-test'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
99
compile 'org.springframework.boot:spring-boot-starter-web'
1010
compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
11-
compile 'io.projectreactor.netty:reactor-netty-http'
11+
compile 'io.projectreactor.netty:reactor-netty'
1212

1313
testCompile project(':spring-security-test')
1414
testCompile 'org.springframework.boot:spring-boot-starter-test'

0 commit comments

Comments
 (0)