Skip to content
Snippets Groups Projects
Commit 25470d8b authored by Shrikant Garg's avatar Shrikant Garg
Browse files

Merge branch 'IBM-tomcat-version-fix' into 'master'

tomcat vulnerability fixing

See merge request !355
parents ee603b90 04070212
Branches
Tags
2 merge requests!378No more retry attempts for schema not found,!355tomcat vulnerability fixing
Pipeline #124789 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.
Please register or to comment