Browse Source

Merge branch '1.3.x' into 2.0.x

pull/459/head
Marcin Grzejszczak 6 years ago
parent
commit
0821e2b1cd
  1. 3
      spring-cloud-commons/src/main/java/org/springframework/cloud/configuration/SpringBootVersionVerifier.java

3
spring-cloud-commons/src/main/java/org/springframework/cloud/configuration/SpringBootVersionVerifier.java

@ -145,7 +145,8 @@ class SpringBootVersionVerifier implements CompatibilityVerifier {
return String.format("Change Spring Boot version to one of the following versions %s .\n" return String.format("Change Spring Boot version to one of the following versions %s .\n"
+ "You can find the latest Spring Boot versions here [%s]. \n" + "You can find the latest Spring Boot versions here [%s]. \n"
+ "If you want to learn more about the Spring Cloud Release train compatibility, you " + "If you want to learn more about the Spring Cloud Release train compatibility, you "
+ "can visit this page [%s] and check the [Release Trains] section.", + "can visit this page [%s] and check the [Release Trains] section.\n"
+ "If you want to disable this check, just set the property [spring.cloud.compatibility-verifier.enabled=false]",
this.acceptedVersions, "https://spring.io/projects/spring-boot#learn", "https://spring.io/projects/spring-cloud#overview"); this.acceptedVersions, "https://spring.io/projects/spring-boot#learn", "https://spring.io/projects/spring-cloud#overview");
} }

Loading…
Cancel
Save