diff --git a/provider/indexer-ibm/pom.xml b/provider/indexer-ibm/pom.xml index 1c1c36c04209c955a64520d1154d6a1bd845ce3d..69b672899999e5022a4e2e7510f1eac5009477ee 100644 --- a/provider/indexer-ibm/pom.xml +++ b/provider/indexer-ibm/pom.xml @@ -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>