From 75953361841e87efb849fa7e4846eb9409e1c33d Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Sun, 12 Jan 2020 19:54:09 +0000 Subject: [PATCH] Build against Spring Integration 5.3.0.M1 snapshots See gh-19650 --- .../IntegrationGraphEndpointWebIntegrationTests.java | 2 +- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/integration/IntegrationGraphEndpointWebIntegrationTests.java b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/integration/IntegrationGraphEndpointWebIntegrationTests.java index 0189fb596c..f128d9fe2b 100644 --- a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/integration/IntegrationGraphEndpointWebIntegrationTests.java +++ b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/integration/IntegrationGraphEndpointWebIntegrationTests.java @@ -36,7 +36,7 @@ class IntegrationGraphEndpointWebIntegrationTests { void graph(WebTestClient client) { client.get().uri("/actuator/integrationgraph").accept(MediaType.APPLICATION_JSON).exchange().expectStatus() .isOk().expectBody().jsonPath("contentDescriptor.providerVersion").isNotEmpty() - .jsonPath("contentDescriptor.providerFormatVersion").isEqualTo(1.1f) + .jsonPath("contentDescriptor.providerFormatVersion").isEqualTo(1.2f) .jsonPath("contentDescriptor.provider").isEqualTo("spring-integration"); } diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 7f5f5266f3..4b2bdb1dc0 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1684,7 +1684,7 @@ bom { ] } } - library('Spring Integration', '5.2.2.RELEASE') { + library('Spring Integration', '5.3.0.BUILD-SNAPSHOT') { group('org.springframework.integration') { modules = [ 'spring-integration-http' {