Files
ballistic-builder-spring/pom.xml

196 lines
6.4 KiB
XML
Raw Permalink Normal View History

2025-06-29 08:45:29 -04:00
<?xml version="1.0" encoding="UTF-8"?>
2025-12-03 10:55:35 -05:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2025-11-26 23:59:04 -05:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
2025-12-03 10:55:35 -05:00
2025-11-26 23:59:04 -05:00
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.3</version>
2025-12-03 10:55:35 -05:00
<relativePath/>
2025-11-26 23:59:04 -05:00
</parent>
2025-12-03 10:55:35 -05:00
2025-11-26 23:59:04 -05:00
<groupId>group.goforward</groupId>
2025-12-08 11:51:27 -05:00
<artifactId>battlbuilder</artifactId>
2025-11-26 23:59:04 -05:00
<version>0.0.1-SNAPSHOT</version>
2025-12-08 11:51:27 -05:00
<name>battlbuilder</name>
2025-12-06 23:06:59 -05:00
<description>Battl Builder API</description>
2025-12-03 10:55:35 -05:00
2025-11-26 23:59:04 -05:00
<url/>
2025-12-03 10:55:35 -05:00
2025-11-26 23:59:04 -05:00
<licenses>
<license/>
</licenses>
2025-12-03 10:55:35 -05:00
2025-11-26 23:59:04 -05:00
<developers>
<developer>
<name>Don Strawsburg</name>
<email>don@goforward.group</email>
<organization>Forward Group, LLC</organization>
</developer>
<developer>
<name>Sean Strawsburg</name>
2025-11-30 23:35:06 -05:00
<email>sean@goforward.group</email>
2025-11-26 23:59:04 -05:00
<organization>Forward Group, LLC</organization>
</developer>
</developers>
2025-12-03 10:55:35 -05:00
2025-11-26 23:59:04 -05:00
<scm>
2025-12-02 13:55:01 -05:00
<connection></connection>
2025-12-10 16:41:27 -05:00
<developerConnection>scm:git:https://gitea.gofwd.group/Forward_Group/ballistic-builder-spring.git
</developerConnection>
2025-11-26 23:59:04 -05:00
<tag/>
2025-11-30 23:35:06 -05:00
<url>ssh://git@gitea.gofwd.group:2225/Forward_Group/ballistic-builder-spring.git</url>
2025-11-26 23:59:04 -05:00
</scm>
2025-12-03 10:55:35 -05:00
2025-11-26 23:59:04 -05:00
<properties>
2025-12-10 16:41:27 -05:00
<java.version>21</java.version>
2025-11-26 23:59:04 -05:00
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>
2025-12-03 10:55:35 -05:00
2025-11-26 23:59:04 -05:00
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
2025-12-03 10:55:35 -05:00
<!--
2025-11-26 23:59:04 -05:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-rest</artifactId>
</dependency>
2025-12-03 10:55:35 -05:00
-->
2025-12-10 16:41:27 -05:00
<!-- JSON Web Tokens (JJWT) -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.11.5</version>
</dependency>
<!-- Spring Mail -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
2025-12-19 13:06:11 -05:00
2025-11-26 23:59:04 -05:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
2025-06-29 08:45:29 -04:00
2025-11-26 23:59:04 -05:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
2025-12-03 10:55:35 -05:00
2025-11-26 23:59:04 -05:00
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.8.5</version>
</dependency>
2025-12-03 10:55:35 -05:00
<!-- Jakarta persistence API (optional, JPA starter already brings it transitively) -->
2025-11-26 23:59:04 -05:00
<dependency>
<groupId>jakarta.persistence</groupId>
<artifactId>jakarta.persistence-api</artifactId>
<version>3.1.0</version>
</dependency>
2025-12-03 10:55:35 -05:00
2025-11-26 23:59:04 -05:00
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
2025-12-02 13:55:01 -05:00
<version>42.7.7</version>
2025-11-26 23:59:04 -05:00
<scope>runtime</scope>
</dependency>
2025-12-03 10:55:35 -05:00
2025-11-26 23:59:04 -05:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2025-12-03 10:55:35 -05:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.11.0</version>
</dependency>
2025-12-03 10:55:35 -05:00
<!-- Spring Security -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<!-- JSON Web Tokens (JJWT) -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.11.5</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.11.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<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>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>RELEASE</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>8.4.3</version>
</dependency>
2025-11-26 23:59:04 -05:00
</dependencies>
2025-06-29 08:45:29 -04:00
2025-11-26 23:59:04 -05:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
2025-12-10 16:41:27 -05:00
<source>21</source>
<target>21</target>
<compilerArgs>--enable-preview</compilerArgs>
2025-11-26 23:59:04 -05:00
</configuration>
</plugin>
2025-12-03 10:55:35 -05:00
2025-11-26 23:59:04 -05:00
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
2025-06-29 08:45:29 -04:00
2025-12-03 10:55:35 -05:00
</project>