From 5d9e4d5d45925a39e2cb451b473a4554e5fe05b9 Mon Sep 17 00:00:00 2001 From: Gokul Nagare <gonagar1@in.ibm.com> Date: Fri, 7 Jan 2022 12:33:55 +0000 Subject: [PATCH] netty codec vuln fixed --- provider/notification-ibm/pom.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/provider/notification-ibm/pom.xml b/provider/notification-ibm/pom.xml index eba9a9b45..a48f8d8cc 100644 --- a/provider/notification-ibm/pom.xml +++ b/provider/notification-ibm/pom.xml @@ -51,8 +51,18 @@ <groupId>org.opengroup.osdu</groupId> <artifactId>notification-core</artifactId> <version>0.13.0-SNAPSHOT</version> + <exclusions> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>netty-codec</artifactId> + </exclusion> + </exclusions> </dependency> - + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-codec</artifactId> + <version>4.1.68.Final</version> + </dependency> <!-- unit test dependencies --> <dependency> <groupId>org.powermock</groupId> -- GitLab