Skip to content

Commit

Permalink
Upgrade to Dysprosium snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoyanchev committed Jan 13, 2020
1 parent 8a60867 commit 29fe65d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ configure(allprojects) { project ->
imports {
mavenBom "com.fasterxml.jackson:jackson-bom:2.10.2"
mavenBom "io.netty:netty-bom:4.1.44.Final"
mavenBom "io.projectreactor:reactor-bom:Dysprosium-SR2"
mavenBom "io.projectreactor:reactor-bom:Dysprosium-BUILD-SNAPSHOT"
mavenBom "io.rsocket:rsocket-bom:1.0.0-RC5"
mavenBom "org.eclipse.jetty:jetty-bom:9.4.25.v20191220"
mavenBom "org.jetbrains.kotlin:kotlin-bom:1.3.61"
Expand Down Expand Up @@ -286,6 +286,7 @@ configure(allprojects) { project ->
}
repositories {
mavenCentral()
maven { url "https://repo.spring.io/snapshot" } // Reactor Dysprosium snapshots
maven { url "https://repo.spring.io/libs-spring-framework-build" }
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

import java.net.URI;

import org.junit.Assume;
import org.junit.jupiter.api.Assumptions;
import reactor.core.publisher.Mono;

import org.springframework.http.HttpStatus;
Expand All @@ -27,6 +29,7 @@
import org.springframework.web.client.RestTemplate;
import org.springframework.web.testfixture.http.server.reactive.bootstrap.AbstractHttpHandlerIntegrationTests;
import org.springframework.web.testfixture.http.server.reactive.bootstrap.HttpServer;
import org.springframework.web.testfixture.http.server.reactive.bootstrap.ReactorHttpServer;

import static org.assertj.core.api.Assertions.assertThat;

Expand Down Expand Up @@ -72,6 +75,10 @@ void handlingError(HttpServer httpServer) throws Exception {

@ParameterizedHttpServerTest // SPR-15560
void emptyPathSegments(HttpServer httpServer) throws Exception {

/* Temporarily necessary for https://github.com/reactor/reactor-netty/issues/948 */
Assumptions.assumeFalse(httpServer instanceof ReactorHttpServer);

startServer(httpServer);

RestTemplate restTemplate = new RestTemplate();
Expand Down

0 comments on commit 29fe65d

Please sign in to comment.