enabling jsp for fast admin screens that won't clutter the BattlBuilder development

This commit is contained in:
2025-12-08 16:31:25 -05:00
parent 355463cbc3
commit 4522d914e8
12 changed files with 360 additions and 6 deletions

15
pom.xml
View File

@@ -131,6 +131,21 @@
<version>0.11.5</version>
<scope>runtime</scope>
</dependency>
<!-- JSP Support -->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.servlet.jsp.jstl</groupId>
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
</dependency>
</dependencies>
<build>