s3fs-nio
s3fs-nio copied to clipboard
exclude netty-nio-client from software.amazon.awssdk
Exlude netty deps since it's not beeing used. This will avoid overloading the classpath, avoid conflicts with other libraries dependent on netty.
api("software.amazon.awssdk:s3") {
exclude("commons-logging", "commons-logging")
exclude(group = "software.amazon.awssdk", module = "netty-nio-client")
}
Hi @mihaisdm ,
This makes sense. We'll have to check it out.