Quarkus CXF 2.3.1 release notes
New and noteworthy in Quarkus CXF
Client timeouts, proxy settings, etc. configurable through application.properties
In plain CXF, these are set via HTTPClientPolicy.
Quarkus CXF now offers configuration options to set them:
HTTPConduitFactory configurable through application.properties
There is a new option
quarkus.cxf.client."client-name".http-conduit-factory
intended primarily as a workaround for CXF-8885
and #992.
Those are about java.net.http.HttpClient-based CXF clients leaking threads.
The default value QuarkusCXFDefault prevents this issue
while the option still allows using java.net.http.HttpClient-based clients by using the HttpClientHTTPConduitFactory value.