@@ -44,14 +44,17 @@ configure(allprojects) { project ->
44
44
ext. jodaVersion = " 2.4"
45
45
ext. junitVersion = " 4.11"
46
46
ext. openJpaVersion = " 2.2.2" // 2.3.0 not Java 8 compatible (based on ASM 4)
47
+ ext. protobufVersion = " 2.5.0"
48
+ ext. reactorVersion = " 1.1.4.RELEASE"
47
49
ext. slf4jVersion = " 1.7.7"
48
50
ext. snakeYamlVersion = " 1.13"
49
51
ext. snifferVersion = " 1.11"
50
52
ext. tiles2Version = " 2.2.2"
51
53
ext. tiles3Version = " 3.0.4"
52
54
ext. tomcatVersion = " 8.0.9"
55
+ ext. tyrusVersion = " 1.3.5"
56
+ ext. undertowVersion = " 1.0.16.Final"
53
57
ext. xstreamVersion = " 1.4.7"
54
- ext. protobufVersion = " 2.5.0"
55
58
ext. woodstoxVersion = " 4.1.6"
56
59
57
60
ext. gradleScriptDir = " ${ rootProject.projectDir} /gradle"
@@ -472,8 +475,8 @@ project("spring-messaging") {
472
475
compile(project(" :spring-beans" ))
473
476
compile(project(" :spring-core" ))
474
477
compile(project(" :spring-context" ))
475
- optional(" org.projectreactor:reactor-core:1.1.3.RELEASE " )
476
- optional(" org.projectreactor:reactor-net:1.1.3.RELEASE " )
478
+ optional(" org.projectreactor:reactor-core:${ reactorVersion } " )
479
+ optional(" org.projectreactor:reactor-net:${ reactorVersion } " )
477
480
optional(" org.eclipse.jetty.websocket:websocket-server:${ jettyVersion} " ) {
478
481
exclude group : " javax.servlet" , module : " javax.servlet-api"
479
482
}
@@ -708,10 +711,10 @@ project("spring-websocket") {
708
711
exclude group : " org.apache.tomcat" , module : " tomcat-websocket-api"
709
712
exclude group : " org.apache.tomcat" , module : " tomcat-servlet-api"
710
713
}
711
- optional(" org.glassfish.tyrus:tyrus-spi:1.3.5 " )
712
- optional(" org.glassfish.tyrus:tyrus-core:1.3.5 " )
713
- optional(" org.glassfish.tyrus:tyrus-server:1.3.5 " )
714
- optional(" org.glassfish.tyrus:tyrus-container-servlet:1.3.5 " )
714
+ optional(" org.glassfish.tyrus:tyrus-spi:${ tyrusVersion } " )
715
+ optional(" org.glassfish.tyrus:tyrus-core:${ tyrusVersion } " )
716
+ optional(" org.glassfish.tyrus:tyrus-server:${ tyrusVersion } " )
717
+ optional(" org.glassfish.tyrus:tyrus-container-servlet:${ tyrusVersion } " )
715
718
optional(" org.eclipse.jetty:jetty-webapp:${ jettyVersion} " ) {
716
719
exclude group : " javax.servlet" , module : " javax.servlet"
717
720
}
@@ -720,20 +723,20 @@ project("spring-websocket") {
720
723
}
721
724
optional(" org.eclipse.jetty.websocket:websocket-client:${ jettyVersion} " )
722
725
optional(" org.eclipse.jetty:jetty-client:${ jettyVersion} " )
723
- optional(" io.undertow:undertow-core:1.0.15.Final " )
724
- optional(" io.undertow:undertow-servlet:1.0.15.Final " ) {
726
+ optional(" io.undertow:undertow-core:${ undertowVersion } " )
727
+ optional(" io.undertow:undertow-servlet:${ undertowVersion } " ) {
725
728
exclude group : " org.jboss.spec.javax.servlet" , module : " jboss-servlet-api_3.1_spec"
726
729
exclude group : " org.jboss.spec.javax.annotation" , module : " jboss-annotations-api_1.2_spec"
727
730
}
728
- optional(" io.undertow:undertow-websockets-jsr:1.0.15.Final " ) {
731
+ optional(" io.undertow:undertow-websockets-jsr:${ undertowVersion } " ) {
729
732
exclude group : " org.jboss.spec.javax.websocket" , module : " jboss-websocket-api_1.0_spec"
730
733
}
731
734
optional(" com.fasterxml.jackson.core:jackson-databind:${ jackson2Version} " )
732
735
testCompile(" org.apache.tomcat.embed:tomcat-embed-core:${ tomcatVersion} " )
733
736
testCompile(" org.apache.tomcat.embed:tomcat-embed-websocket:${ tomcatVersion} " )
734
737
testCompile(" org.apache.tomcat.embed:tomcat-embed-logging-juli:${ tomcatVersion} " )
735
- testCompile(" org.projectreactor:reactor-core:1.1.3.RELEASE " )
736
- testCompile(" org.projectreactor:reactor-net:1.1.3.RELEASE " )
738
+ testCompile(" org.projectreactor:reactor-core:${ reactorVersion } " )
739
+ testCompile(" org.projectreactor:reactor-net:${ reactorVersion } " )
737
740
testCompile(" log4j:log4j:1.2.17" )
738
741
testCompile(" org.slf4j:slf4j-jcl:${ slf4jVersion} " )
739
742
}
0 commit comments