Skip to content

Commit

Permalink
Clean-up maven dependencies (#1090)
Browse files Browse the repository at this point in the history
* Clean-up maven dependencies

A follow-up to #1073
  • Loading branch information
banterCZ authored Oct 24, 2023
1 parent fe0e3e7 commit c541ea6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 39 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,20 @@
<scope>import</scope>
</dependency>

<!-- API -->
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>

<!-- Standalone run -->
<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>
Expand Down
19 changes: 0 additions & 19 deletions powerauth-admin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,23 +50,10 @@
<artifactId>powerauth-rest-client-spring</artifactId>
</dependency>

<!-- API -->
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>

<!-- JSTL -->
<dependency>
<groupId>jakarta.servlet.jsp.jstl</groupId>
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
<exclusions>
<exclusion>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- Normal Jakarta EE servers already provide JSTL implementation out the box, but Tomcat does not -->
Expand Down Expand Up @@ -94,12 +81,6 @@
</dependency>

<!-- Standalone run -->
<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-jasper</artifactId>
Expand Down
20 changes: 0 additions & 20 deletions powerauth-java-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,6 @@
<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>org.springframework.boot</groupId>
Expand Down Expand Up @@ -115,13 +109,6 @@
<version>${springdoc-openapi-starter-webmvc-ui.version}</version>
</dependency>

<!-- API -->
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>

<!-- Other Dependencies -->
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -156,13 +143,6 @@
<artifactId>logstash-logback-encoder</artifactId>
</dependency>

<!-- Standalone run -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>

<!-- Monitoring -->
<dependency>
<groupId>io.micrometer</groupId>
Expand Down

0 comments on commit c541ea6

Please sign in to comment.