From c464cddf83d2b0796eaf4dae9a75c8bf0a7d323a Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Fri, 7 Aug 2015 17:30:52 -0400 Subject: [PATCH] Update versions --- spring-web-reactive/build.gradle | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/spring-web-reactive/build.gradle b/spring-web-reactive/build.gradle index 91ce186840b..4aa6cab66c9 100644 --- a/spring-web-reactive/build.gradle +++ b/spring-web-reactive/build.gradle @@ -18,31 +18,28 @@ repositories { } dependencies { - compile "org.springframework:spring-core:4.1.2.RELEASE" - compile "org.reactivestreams:reactive-streams:1.0.0.RC3" - compile "io.netty:netty-buffer:4.0.25.Final" + compile "org.springframework:spring-core:4.2.0.RELEASE" + compile "org.reactivestreams:reactive-streams:1.0.0" compile "org.slf4j:slf4j-api:1.7.6" compile "ch.qos.logback:logback-classic:1.1.2" provided "javax.servlet:javax.servlet-api:3.1.0" testCompile "junit:junit:4.12" - testCompile "org.springframework:spring-web:4.1.2.RELEASE" - testCompile 'org.apache.tomcat:tomcat-util:8.0.23' - testCompile 'org.apache.tomcat.embed:tomcat-embed-core:8.0.23' + testCompile "org.springframework:spring-web:4.2.0.RELEASE" + testCompile "org.springframework:spring-test:4.2.0.RELEASE" - testCompile 'org.eclipse.jetty:jetty-server:9.3.0.v20150612' - testCompile 'org.eclipse.jetty:jetty-servlet:9.3.0.v20150612' + testCompile 'org.apache.tomcat:tomcat-util:8.0.24' + testCompile 'org.apache.tomcat.embed:tomcat-embed-core:8.0.24' + + testCompile 'org.eclipse.jetty:jetty-server:9.3.2.v20150730' + testCompile 'org.eclipse.jetty:jetty-servlet:9.3.2.v20150730' testCompile("log4j:log4j:1.2.16") testCompile("org.mockito:mockito-core:1.10.19") { exclude group:'org.hamcrest', module:'hamcrest-core' } testCompile("org.hamcrest:hamcrest-all:1.3") - testCompile "org.springframework:spring-test:4.1.2.RELEASE" - - - }