Skip to content

Commit 1aea280

Browse files
committed
Remove explicit Reactor deps for RSockets
* It looks like we don't need to manage Reactor dependencies in the RSocket module: the `io.rsocket:rsocket-transport-netty` brings everything we need, although it doesn't that with its own supported versions * Use non-HTTPS url for `example.org` in test config to avoid SSL handshake
1 parent c18c2e2 commit 1aea280

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

build.gradle

-2
Original file line numberDiff line numberDiff line change
@@ -615,8 +615,6 @@ project('spring-integration-rsocket') {
615615
description = 'Spring Integration RSocket Support'
616616
dependencies {
617617
compile project(":spring-integration-core")
618-
compile("io.projectreactor.netty:reactor-netty:$reactorNettyVersion")
619-
compile("io.rsocket:rsocket-core:$rsocketVersion")
620618
compile("io.rsocket:rsocket-transport-netty:$rsocketVersion")
621619

622620
testCompile "io.projectreactor:reactor-test:$reactorVersion"

spring-integration-rsocket/src/test/java/org/springframework/integration/rsocket/config/RSocketInboundGatewayParserTests-context.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
http://www.springframework.org/schema/integration https://www.springframework.org/schema/integration/spring-integration.xsd">
99

1010
<bean id="clientRSocketConnector" class="org.springframework.integration.rsocket.ClientRSocketConnector">
11-
<constructor-arg value="https://example.org"/>
11+
<constructor-arg value="http://example.org"/>
1212
<property name="autoStartup" value="false"/>
1313
</bean>
1414

spring-integration-rsocket/src/test/java/org/springframework/integration/rsocket/config/RSocketOutboundGatewayParserTests-context.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
http://www.springframework.org/schema/integration https://www.springframework.org/schema/integration/spring-integration.xsd">
99

1010
<bean id="clientRSocketConnector" class="org.springframework.integration.rsocket.ClientRSocketConnector">
11-
<constructor-arg value="https://example.org"/>
11+
<constructor-arg value="http://example.org"/>
1212
<property name="autoStartup" value="false"/>
1313
</bean>
1414

0 commit comments

Comments
 (0)