Skip to content

Commit

Permalink
Merge pull request #30 from arctic-sdi/tomcat
Browse files Browse the repository at this point in the history
Changes for tomcat env
  • Loading branch information
ZakarFin committed Jun 7, 2024
2 parents 7447853 + f021634 commit c17a1f0
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,24 @@
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<version>2.7.11</version>
<configuration>
<projectType>application</projectType>
<schemaVersion>1.4</schemaVersion>
<includeBomSerialNumber>true</includeBomSerialNumber>
<includeCompileScope>true</includeCompileScope>
<includeProvidedScope>true</includeProvidedScope>
<includeRuntimeScope>true</includeRuntimeScope>
<includeSystemScope>true</includeSystemScope>
<includeTestScope>true</includeTestScope>
<includeLicenseText>false</includeLicenseText>
<outputFormat>all</outputFormat>
<outputName>bom</outputName>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
15 changes: 15 additions & 0 deletions webapp-map/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,21 @@
<artifactId>postgresql</artifactId>
</dependency>

<!-- JSTL not needed for Jetty, but required by Tomcat -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>javax.mail-api</artifactId>
<version>1.6.2</version>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>jakarta.mail</artifactId>
<version>1.6.7</version>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit c17a1f0

Please sign in to comment.