We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb2936d commit a9cc5cfCopy full SHA for a9cc5cf
spring-cloud-commons/src/main/java/org/springframework/cloud/configuration/SpringBootVersionVerifier.java
@@ -80,13 +80,13 @@ public String toString() {
80
81
@Override
82
public boolean isCompatible() {
83
- // try {
84
- // Class.forName("org.springframework.boot.autoconfigure.web.client.RestClientSsl");
85
- return true;
86
- // }
87
- // catch (ClassNotFoundException e) {
88
- // return false;
89
+ try {
+ Class.forName("org.springframework.boot.autoconfigure.condition.ConditionalOnBooleanProperty");
+ return true;
+ }
+ catch (ClassNotFoundException e) {
+ return false;
90
}
91
};
92
0 commit comments