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 2172aee commit c736926
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
Expand Up @@ -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'
}
}
}
}
Expand Down

0 comments on commit c736926

Please sign in to comment.