Skip to content

Commit

Permalink
Fix #86: Executable war
Browse files Browse the repository at this point in the history
  • Loading branch information
jandusil committed Oct 24, 2023
1 parent 5d95c70 commit 4ebf1ad
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,22 @@
<logstash.version>7.4</logstash.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-el</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
Expand Down Expand Up @@ -174,6 +183,7 @@
<rules>
<bannedDependencies>
<excludes>
<exclude>org.apache.tomcat.embed:*:*:*:compile</exclude>
<exclude>org.bouncycastle:bcpkix-jdk15on:*:*:compile</exclude>
<exclude>org.bouncycastle:bcprov-jdk15on:*:*:compile</exclude>
<!-- Force switching to Jakarta EE -->
Expand Down

0 comments on commit 4ebf1ad

Please sign in to comment.