Skip to content

Commit

Permalink
Fix #679: Executable war
Browse files Browse the repository at this point in the history
  • Loading branch information
jandusil committed Oct 24, 2023
1 parent e76cae5 commit 57c7555
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions powerauth-push-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,21 @@
<version>1.6.0-SNAPSHOT</version>
</parent>

<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>

<!-- Spring Dependencies -->
Expand All @@ -30,7 +45,6 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand All @@ -43,7 +57,6 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit 57c7555

Please sign in to comment.