diff options
author | jitendra sharma <jitendra.sharma1@huawei.com> | 2020-02-25 14:30:15 +0000 |
---|---|---|
committer | jitendra sharma <jitendra.sharma1@huawei.com> | 2020-02-25 14:33:12 +0000 |
commit | 7b6bd1c9fbd79ea60ddd5289c8a2b094a7564be4 (patch) | |
tree | 2c32e8e5062ad259569d14af67e91db9381bef88 /profiles | |
parent | 2d4696984968a088a1c664d04bb356cf1c9898d7 (diff) |
change version for netty-codec-http
Issue-ID: CLI-246
Signed-off-by: jitendra sharma <jitendra.sharma1@huawei.com>
Change-Id: Ieec9fb59e22664b83fb4f3f213a3c8bceafb37be
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/http/pom.xml | 15 |
1 files changed, 15 insertions, 0 deletions
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> |