Skip to content

Commit

Permalink
fix(messaging-sqs): exclude optional aws sdk dependency (#1488)
Browse files Browse the repository at this point in the history
  • Loading branch information
scrocquesel authored Nov 18, 2024
1 parent 67fa338 commit 9718e91
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions quarkus-messaging-amazon-sqs/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,19 @@
<groupId>io.smallrye.reactive</groupId>
<artifactId>smallrye-reactive-messaging-aws-sqs</artifactId>
<exclusions>
<!-- we exclude them here because we want to make them optional -->
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>netty-nio-client</artifactId>
</exclusion>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>url-connection-client</artifactId>
</exclusion>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down

0 comments on commit 9718e91

Please sign in to comment.