Updates boot 3.5 verification with class from boot 3.5

This commit is contained in:
spencergibb
2025-01-17 12:36:13 -05:00
parent bb2936d86d
commit a9cc5cf978

View File

@@ -80,13 +80,13 @@ class SpringBootVersionVerifier implements CompatibilityVerifier {
@Override
public boolean isCompatible() {
// try {
// Class.forName("org.springframework.boot.autoconfigure.web.client.RestClientSsl");
return true;
// }
// catch (ClassNotFoundException e) {
// return false;
// }
try {
Class.forName("org.springframework.boot.autoconfigure.condition.ConditionalOnBooleanProperty");
return true;
}
catch (ClassNotFoundException e) {
return false;
}
}
};
}