Skip to content

Commit

Permalink
Fix extra netty-codec-http spot to 4.1.108
Browse files Browse the repository at this point in the history
Signed-off-by: Mikayla Thompson <thomika@amazon.com>
  • Loading branch information
mikaylathompson committed Apr 23, 2024
1 parent ab45c93 commit d9a476b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion TrafficCapture/trafficReplayer/build.gradle
Original file line number Diff line number Diff line change
@@ -116,7 +116,11 @@ configurations.all {
}
}
if (details.requested.group == 'io.netty') {
details.useVersion '4.1.100.Final'
if (details.requested.name == 'netty-codec-http') {
details.useVersion '4.1.108.Final'
} else {
details.useVersion '4.1.100.Final'
}
}
}
}

0 comments on commit d9a476b

Please sign in to comment.