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>
|
|
|
|
|
<artifactId>ballistic</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<name>ballistic</name>
|
|
|
|
|
<description>Ballistic 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 06:38:51 -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>
|
|
|
|
|
<developerConnection>scm:git:https://gitea.gofwd.group/Forward_Group/ballistic-builder-spring.git</developerConnection>
|
2025-11-26 23:59:04 -05:00
|
|
|
<tag/>
|
|
|
|
|
<url/>
|
|
|
|
|
</scm>
|
2025-12-03 10:55:35 -05:00
|
|
|
|
2025-11-26 23:59:04 -05:00
|
|
|
<properties>
|
|
|
|
|
<java.version>17</java.version>
|
|
|
|
|
<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
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
<dependency>
|
2025-11-26 23:59:04 -05:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-rest</artifactId>
|
2025-12-03 10:55:35 -05:00
|
|
|
</dependency>
|
|
|
|
|
-->
|
|
|
|
|
|
2025-11-26 23:59:04 -05:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</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-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
|
|
|
|
2025-11-30 06:38:51 -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>
|
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>
|
|
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
|
<target>${maven.compiler.target}</target>
|
|
|
|
|
</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>
|