Skip to content

Commit

Permalink
Add exclusions for netty-codec-(marshalling|protobuf)
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Oct 10, 2024
1 parent 46ba90b commit 84dda96
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -957,6 +957,23 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${netty.version}</version>
<!-- Make sure we do not depend onto those jars, because they depend on protobuf/marshalling jars we do not need -->
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-codec-protobuf</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-codec-marshalling</artifactId>
</exclusion>
</exclusions>
</dependency>


<!-- jackson -->
<dependency>
Expand Down

0 comments on commit 84dda96

Please sign in to comment.