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 1c828062865f9ceb652721568f94686e9dbb8f5e 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 1be33eed49..ec05d1d605 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>
