Skip to content
Snippets Groups Projects
Commit 04070212 authored by Ashwani Pandey's avatar Ashwani Pandey
Browse files

tomcat vulnerability fixing

parent ee603b90
No related branches found
No related tags found
2 merge requests!378No more retry attempts for schema not found,!355tomcat vulnerability fixing
Pipeline #124718 failed
......@@ -32,6 +32,7 @@
<properties>
<os-core-lib-ibm.version>0.15.2</os-core-lib-ibm.version>
<tomcat.embed.core.version>9.0.54</tomcat.embed.core.version>
</properties>
<profiles>
......@@ -59,8 +60,27 @@
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>${tomcat.embed.core.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment