Skip to content

Commit

Permalink
Issue #LR-708 chore: vulnerability fix - netty jars
Browse files Browse the repository at this point in the history
  • Loading branch information
amitpriyadarshi committed Jun 19, 2024
1 parent 04c0c57 commit ac08fa9
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,24 +47,14 @@
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.netty/netty-codec -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>4.1.68.Final</version>
</dependency>

<!-- https://mvnrepository.com/artifact/io.netty/netty-codec-http -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>4.1.44.Final</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.netty/netty-handler -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>4.1.46.Final</version>
</dependency>




Expand Down Expand Up @@ -102,6 +92,12 @@
<artifactId>play-netty-server_${scala.major.version}</artifactId>
<version>${play2.version}</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<artifactId>netty-codec-http</artifactId>
<groupId>io.netty</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- <dependency>-->
<!-- <groupId>io.netty</groupId>-->
Expand Down

0 comments on commit ac08fa9

Please sign in to comment.