Update to 2.0.6 snapshot for Header sent too soon fix, which allows DispatcherHandler to assign content-type correctly.

This commit is contained in:
Stephane Maldini 2015-09-29 23:16:06 +01:00
parent 20c4011094
commit 4ffec61310
2 changed files with 6 additions and 4 deletions

View File

@ -20,21 +20,23 @@ group = 'org.springframework.reactive'
repositories {
mavenCentral()
mavenLocal()
maven { url 'https://oss.jfrog.org/libs-snapshot' } // RxNetty 0.5.x snapshots
maven { url 'http://repo.spring.io/snapshot' } // Reactor snapshot
}
dependencies {
compile "org.springframework:spring-core:4.2.0.RELEASE"
compile "org.springframework:spring-web:4.2.0.RELEASE"
compile "org.reactivestreams:reactive-streams:1.0.0"
compile "io.projectreactor:reactor-stream:2.0.5.RELEASE"
compile "io.projectreactor:reactor-stream:2.0.6.BUILD-SNAPSHOT"
compile "commons-logging:commons-logging:1.2"
compile "com.fasterxml.jackson.core:jackson-databind:2.6.1"
optional "io.reactivex:rxnetty:0.5.0-SNAPSHOT"
optional "io.reactivex:rxjava-reactive-streams:1.0.1"
optional "io.projectreactor:reactor-net:2.0.5.RELEASE"
optional "io.projectreactor:reactor-net:2.0.6.BUILD-SNAPSHOT"
provided "javax.servlet:javax.servlet-api:3.1.0"

View File

@ -38,8 +38,8 @@ public abstract class AbstractHttpHandlerIntegrationTests {
return new Object[][] {
{new JettyHttpServer()},
{new TomcatHttpServer()},
{new ReactorHttpServer()},
{new RxNettyHttpServer()}
{new RxNettyHttpServer()},
{new ReactorHttpServer()}
};
}