This is an automated email from the ASF dual-hosted git repository. jiriondrusek pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 83f4e5798b85492b1048fcd66564dcd85b59db54 Author: Jiri Ondrusek <[email protected]> AuthorDate: Fri Oct 10 16:14:46 2025 +0200 Fixes azure-eventhub native --- extensions/azure-eventhubs/runtime/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/extensions/azure-eventhubs/runtime/pom.xml b/extensions/azure-eventhubs/runtime/pom.xml index 74defd449b..1d78fb8f2e 100644 --- a/extensions/azure-eventhubs/runtime/pom.xml +++ b/extensions/azure-eventhubs/runtime/pom.xml @@ -48,6 +48,11 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-azure-eventhubs</artifactId> </dependency> + <!-- required for the native build, referenced from com.microsoft.aad.msal4jextensions.PersistenceTokenCacheAccessAspect --> + <dependency> + <groupId>com.nimbusds</groupId> + <artifactId>nimbus-jose-jwt</artifactId> + </dependency> </dependencies> <build>
