Skip to content

Commit

Permalink
Merge pull request #4 from surajkumar/exclude-netty
Browse files Browse the repository at this point in the history
Use Java's connection classes instead of AWS
  • Loading branch information
surajkumar authored Sep 6, 2024
2 parents 20d3255 + c70f318 commit fc069c8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ subprojects {
implementation 'com.amazonaws:aws-lambda-java-events:3.13.0'
implementation 'com.amazonaws:aws-lambda-java-runtime-interface-client:2.6.0'

implementation 'software.amazon.awssdk:url-connection-client:2.13.31'

configurations.configureEach {
exclude group: 'software.amazon.awssdk', module: 'apache-client'
exclude group: 'software.amazon.awssdk', module: 'netty-nio-client'
}

implementation 'org.slf4j:log4j-over-slf4j:2.0.16'
implementation 'ch.qos.logback:logback-classic:1.5.7'
}
Expand Down

0 comments on commit fc069c8

Please sign in to comment.