summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--grpc/pom.xml10
-rw-r--r--profiles/http/pom.xml15
2 files changed, 25 insertions, 0 deletions
diff --git a/grpc/pom.xml b/grpc/pom.xml
index e73be6b3..75772860 100644
--- a/grpc/pom.xml
+++ b/grpc/pom.xml
@@ -47,11 +47,21 @@
</exclusion>
</exclusions>
</dependency>
+ <!-- excluded netty-codec-http and added invulnerable version -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
<version>4.1.42.Final</version>
+ <exclusions><exclusion>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-http</artifactId>
+ </exclusion></exclusions>
</dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-http</artifactId>
+ <version>4.1.45.Final</version>
+ </dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
diff --git a/profiles/http/pom.xml b/profiles/http/pom.xml
index 73223a97..fe2cee86 100644
--- a/profiles/http/pom.xml
+++ b/profiles/http/pom.xml
@@ -87,6 +87,8 @@ Excluded commons-codec vulnerable version and added invulnerable version
<version>${project.version}</version>
<scope>test</scope>
</dependency>
+ <!--excluded netty-handler -->
+ <!-- excluded netty-codec-http and added invulnerable version -->
<dependency>
<groupId>com.github.dreamhead</groupId>
<artifactId>moco-runner</artifactId>
@@ -100,8 +102,21 @@ Excluded commons-codec vulnerable version and added invulnerable version
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-handler</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-http</artifactId>
+ </exclusion>
</exclusions>
</dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-http</artifactId>
+ <version>4.1.45.Final</version>
+ </dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>