Skip to content

Commit

Permalink
[DROOLS-7598] Upgrade tomcat version (#3007)
Browse files Browse the repository at this point in the history
* [DROOLS-7598] Upgrade tomcat version

* excluded servlet-api to avoid BanDuplicateClasses
  • Loading branch information
tkobayas authored Dec 22, 2023
1 parent a94c05f commit 1f901ca
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion kie-tomcat-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,19 @@
<dependencies>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>catalina</artifactId>
<artifactId>tomcat-catalina</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.security.jacc</groupId>
<artifactId>jakarta.security.jacc-api</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down

0 comments on commit 1f901ca

Please sign in to comment.