This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit bb707dc81d74dc3a055e968a120a42f9baf1460f Author: Jiri Ondrusek <[email protected]> AuthorDate: Fri Oct 24 14:22:39 2025 +0200 fixed Xchange --- .../camel/quarkus/component/xchange/deployment/XchangeProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/xchange/deployment/src/main/java/org/apache/camel/quarkus/component/xchange/deployment/XchangeProcessor.java b/extensions/xchange/deployment/src/main/java/org/apache/camel/quarkus/component/xchange/deployment/XchangeProcessor.java index 9c154e6a4f..192c72c029 100644 --- a/extensions/xchange/deployment/src/main/java/org/apache/camel/quarkus/component/xchange/deployment/XchangeProcessor.java +++ b/extensions/xchange/deployment/src/main/java/org/apache/camel/quarkus/component/xchange/deployment/XchangeProcessor.java @@ -138,7 +138,7 @@ class XchangeProcessor { @BuildStep void runtimeInitializedClasses(BuildProducer<RuntimeInitializedClassBuildItem> runtimeInitializedClasses) { - Stream.of(Order.class.getName()) + Stream.of(Order.class.getName(), "org.apache.http.impl.auth.NTLMEngineImpl") .map(RuntimeInitializedClassBuildItem::new) .forEach(runtimeInitializedClasses::produce); }
