This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 9a54c4ed32804ce672c367c0695bde8a2d4e5a39 Author: James Netherton <[email protected]> AuthorDate: Thu Oct 30 14:58:40 2025 +0000 Add quarkus-netty dependency to aws-bedrock extension --- extensions/aws-bedrock/deployment/pom.xml | 4 ++++ extensions/aws-bedrock/runtime/pom.xml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/extensions/aws-bedrock/deployment/pom.xml b/extensions/aws-bedrock/deployment/pom.xml index a1b2f230f9..01fa5405c6 100644 --- a/extensions/aws-bedrock/deployment/pom.xml +++ b/extensions/aws-bedrock/deployment/pom.xml @@ -42,6 +42,10 @@ <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-aws-bedrock</artifactId> </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-netty-deployment</artifactId> + </dependency> </dependencies> <build> diff --git a/extensions/aws-bedrock/runtime/pom.xml b/extensions/aws-bedrock/runtime/pom.xml index 19496404b8..e1d0df7e62 100644 --- a/extensions/aws-bedrock/runtime/pom.xml +++ b/extensions/aws-bedrock/runtime/pom.xml @@ -48,6 +48,10 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-aws-bedrock</artifactId> </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-netty</artifactId> + </dependency> </dependencies> <build>
