@@ -220,6 +220,7 @@ configure(subprojects - project(":spring-build-src")) { subproject ->
220
220
dependencyManagement {
221
221
imports {
222
222
mavenBom " io.projectreactor:reactor-bom:${ reactorVersion} "
223
+ mavenBom " io.netty:netty-bom:${ nettyVersion} "
223
224
}
224
225
resolutionStrategy {
225
226
cacheChangingModulesFor 0 , ' seconds'
@@ -385,7 +386,7 @@ project("spring-core") {
385
386
optional(" io.reactivex:rxjava:${ rxjavaVersion} " )
386
387
optional(" io.reactivex:rxjava-reactive-streams:${ rxjavaAdapterVersion} " )
387
388
optional(" io.reactivex.rxjava2:rxjava:${ rxjava2Version} " )
388
- optional(" io.netty:netty-buffer: ${ nettyVersion } " )
389
+ optional(" io.netty:netty-buffer" )
389
390
testCompile(" io.projectreactor.addons:reactor-test" )
390
391
testCompile(" javax.xml.bind:jaxb-api:${ jaxbVersion} " )
391
392
testCompile(" org.apache.tomcat.embed:tomcat-embed-core:${ tomcatVersion} " )
@@ -566,7 +567,7 @@ project("spring-messaging") {
566
567
optional(project(" :spring-oxm" ))
567
568
optional(" io.projectreactor:reactor-core" )
568
569
optional(" io.projectreactor.ipc:reactor-netty" )
569
- optional(" io.netty:netty-all: ${ nettyVersion } " )
570
+ optional(" io.netty:netty-all" )
570
571
optional(" org.eclipse.jetty.websocket:websocket-server:${ jettyVersion} " ) {
571
572
exclude group : " javax.servlet" , module : " javax.servlet-api"
572
573
}
@@ -587,7 +588,7 @@ project("spring-messaging") {
587
588
}
588
589
testCompile(" org.apache.tomcat.embed:tomcat-embed-core:${ tomcatVersion} " )
589
590
testCompile(" org.apache.tomcat.embed:tomcat-embed-websocket:${ tomcatVersion} " )
590
- testCompile(" io.netty:netty-all: ${ nettyVersion } " )
591
+ testCompile(" io.netty:netty-all" )
591
592
testCompile(" org.xmlunit:xmlunit-matchers:${ xmlunitVersion} " )
592
593
testCompile(" org.jetbrains.kotlin:kotlin-reflect:${ kotlinVersion} " )
593
594
testCompile(" org.jetbrains.kotlin:kotlin-stdlib-jre8:${ kotlinVersion} " )
@@ -722,7 +723,7 @@ project("spring-web") {
722
723
optional(" io.reactivex.rxjava2:rxjava:${ rxjava2Version} " )
723
724
optional(" org.apache.tomcat.embed:tomcat-embed-core:${ tomcatVersion} " )
724
725
optional(" io.undertow:undertow-core:${ undertowVersion} " )
725
- optional(" io.netty:netty-buffer: ${ nettyVersion } " ) // temporarily for JsonObjectDecoder
726
+ optional(" io.netty:netty-buffer" ) // temporarily for JsonObjectDecoder
726
727
optional(" com.fasterxml.woodstox:woodstox-core:${ woodstoxVersion} " ) { // woodstox before aalto
727
728
exclude group : " stax" , module : " stax-api"
728
729
}
@@ -733,7 +734,7 @@ project("spring-web") {
733
734
optional(" org.apache.httpcomponents:httpasyncclient:${ httpasyncVersion} " ) {
734
735
exclude group : " commons-logging" , module : " commons-logging"
735
736
}
736
- optional(" io.netty:netty-all: ${ nettyVersion } " )
737
+ optional(" io.netty:netty-all" )
737
738
optional(" com.squareup.okhttp3:okhttp:${ okhttp3Version} " )
738
739
optional(" com.fasterxml.jackson.core:jackson-databind:${ jackson2Version} " )
739
740
optional(" com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${ jackson2Version} " )
@@ -1001,7 +1002,7 @@ project("spring-websocket") {
1001
1002
testCompile(" org.apache.tomcat.embed:tomcat-embed-websocket:${ tomcatVersion} " )
1002
1003
testCompile(" io.projectreactor:reactor-core" )
1003
1004
testCompile(" io.projectreactor.ipc:reactor-netty" )
1004
- testCompile(" io.netty:netty-all: ${ nettyVersion } " )
1005
+ testCompile(" io.netty:netty-all" )
1005
1006
}
1006
1007
1007
1008
if (JavaVersion . current(). java9Compatible) {
0 commit comments