Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump netty version to 4.1.74.Final #715

Merged
merged 3 commits into from
Oct 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ ext.libraries = [
mapreduceClientCore: "org.apache.hadoop:hadoop-mapreduce-client-core:${hadoopVersion}",
mapreduceClientJobClient: "org.apache.hadoop:hadoop-mapreduce-client-jobclient:${hadoopVersion}",
mockito: 'org.mockito:mockito-core:4.11.0',
netty: 'io.netty:netty-all:4.1.52.Final',
netty: 'io.netty:netty-all:4.1.74.Final',
oss: 'org.sonatype.oss:oss-parent:7',
pulsarClient: "${pulsarGroup}:pulsar-client:${pulsarVersion}",
pulsarIoCore: "${pulsarGroup}:pulsar-io-core:${pulsarVersion}",
Expand Down Expand Up @@ -227,16 +227,6 @@ subprojects {
exclude module: 'clojure'
exclude module: 'kafka_2.10' // This ends up getting pulled in by a few dependencies, unfortunately :/ ...
exclude module: 'kafka_2.11'

// These various netty modules clash with netty-all, and we transitively pull a different version, which causes NoSuchMethodError
exclude group: 'io.netty', module: 'netty-buffer'
exclude group: 'io.netty', module: 'netty-codec'
exclude group: 'io.netty', module: 'netty-common'
exclude group: 'io.netty', module: 'netty-handler'
exclude group: 'io.netty', module: 'netty-resolver'
exclude group: 'io.netty', module: 'netty-transport'
exclude group: 'io.netty', module: 'netty-transport-native-epoll'
exclude group: 'io.netty', module: 'netty-transport-native-unix-common'
}
compileOnly {
// These dependencies are transitively used at runtime, so we cannot exclude them further than compileOnly
Expand Down