Skip to content

Commit

Permalink
Fix #278: Executable war (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnpsk authored Oct 24, 2023
1 parent 72d08e4 commit 2144346
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions powerauth-data-adapter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,16 @@
<powerauth-webflow.version>1.5.0</powerauth-webflow.version>
</properties>

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

<dependencies>
<!-- Spring Dependencies -->
<dependency>
Expand All @@ -80,10 +90,6 @@
<artifactId>log4j-to-slf4j</artifactId>
<groupId>org.apache.logging.log4j</groupId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -262,17 +268,6 @@
</properties>
</profile>

<profile>
<id>standalone</id>
<dependencies>
<dependency>
<artifactId>tomcat-embed-websocket</artifactId>
<groupId>org.apache.tomcat.embed</groupId>
<scope>provided</scope>
</dependency>
</dependencies>
</profile>

<profile>
<id>liquibase</id>
<dependencies>
Expand Down

0 comments on commit 2144346

Please sign in to comment.