Upgrade to Spring Boot 2.2.2.RELEASE
- Upgrade to Spring Framework 5.2.2.RELEASE - Upgrade to Reactor Dysprosium-SR2 - Upgrade to CF Java Client 4.2.0.RELEASE
This commit is contained in:
committed by
Roy Clarkson
parent
12b6350cdd
commit
fd78298723
@@ -28,12 +28,12 @@ buildscript {
|
||||
}
|
||||
|
||||
ext {
|
||||
springBootVersion = project.findProperty("springBootVersion") ?: "2.2.1.RELEASE"
|
||||
springFrameworkVersion = project.findProperty("springFrameworkVersion") ?: "5.2.1.RELEASE"
|
||||
reactorVersion = project.findProperty("reactorVersion") ?: "Dysprosium-SR1"
|
||||
springBootVersion = project.findProperty("springBootVersion") ?: "2.2.2.RELEASE"
|
||||
springFrameworkVersion = project.findProperty("springFrameworkVersion") ?: "5.2.2.RELEASE"
|
||||
reactorVersion = project.findProperty("reactorVersion") ?: "Dysprosium-SR2"
|
||||
openServiceBrokerVersion = "3.1.0.RELEASE"
|
||||
springCredhubVersion = "2.0.1.RELEASE"
|
||||
cfJavaClientVersion = "4.1.0.RELEASE"
|
||||
cfJavaClientVersion = "4.2.0.RELEASE"
|
||||
blockHoundVersion = "1.0.1.RELEASE"
|
||||
junitPlatformLauncherVersion = "1.5.2"
|
||||
checkstyleVersion = "8.21"
|
||||
|
||||
@@ -309,6 +309,7 @@ public class CloudFoundryAppDeployer implements AppDeployer, ResourceLoaderAware
|
||||
.getId();
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
private Mono<GetDeploymentResponse> waitForDeploymentDeployed(String deploymentId) {
|
||||
return this.client
|
||||
.deploymentsV3()
|
||||
|
||||
@@ -133,7 +133,7 @@ class CloudFoundryAppDeployerUpdateApplicationTest {
|
||||
private ResourceLoader resourceLoader;
|
||||
|
||||
@BeforeEach
|
||||
@SuppressWarnings("PMD.ExcessiveMethodLength")
|
||||
@SuppressWarnings({"PMD.ExcessiveMethodLength", "deprecation"})
|
||||
void setUp() {
|
||||
CloudFoundryDeploymentProperties deploymentProperties = new CloudFoundryDeploymentProperties();
|
||||
CloudFoundryTargetProperties targetProperties = new CloudFoundryTargetProperties();
|
||||
|
||||
@@ -50,4 +50,5 @@ dependencies {
|
||||
test {
|
||||
// force a new fork for every test to eliminate issues with wiremock state
|
||||
forkEvery = 1
|
||||
maxHeapSize = '1G'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user