2024-09-13 17:32:08 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2024-09-19 13:31:03 -07:00
|
|
|
<version>3.3.4</version>
|
2024-09-13 17:32:08 -07:00
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<!-- Project Details -->
|
|
|
|
<groupId>me.braydon</groupId>
|
|
|
|
<artifactId>API</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
|
|
<!-- Properties -->
|
|
|
|
<properties>
|
|
|
|
<java.version>17</java.version>
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<!-- Build Config -->
|
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<!-- Spring -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>build-info</id>
|
|
|
|
<goals>
|
|
|
|
<goal>build-info</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<additionalProperties>
|
|
|
|
<description>${project.description}</description>
|
|
|
|
</additionalProperties>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2024-09-16 16:56:15 -07:00
|
|
|
<!-- Dependency Management -->
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.konghq</groupId>
|
|
|
|
<artifactId>unirest-java-bom</artifactId>
|
|
|
|
<version>4.4.4</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2024-09-13 17:32:08 -07:00
|
|
|
<!-- Dependencies -->
|
|
|
|
<dependencies>
|
|
|
|
<!-- Spring -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2024-09-16 18:26:17 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
2024-09-13 17:32:08 -07:00
|
|
|
|
|
|
|
<!-- Libraries -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.34</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2024-09-16 16:56:15 -07:00
|
|
|
<dependency>
|
2024-09-19 04:24:16 -07:00
|
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
|
|
<artifactId>caffeine</artifactId>
|
|
|
|
<version>3.1.8</version>
|
2024-09-16 16:56:15 -07:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-09-17 21:07:34 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.flagsmith</groupId>
|
|
|
|
<artifactId>flagsmith-java-client</artifactId>
|
|
|
|
<version>7.2.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-09-19 04:24:16 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.relops</groupId>
|
|
|
|
<artifactId>snowflake</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.taimos</groupId>
|
|
|
|
<artifactId>totp</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-09-16 16:56:15 -07:00
|
|
|
|
|
|
|
<!-- Unirest -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.konghq</groupId>
|
|
|
|
<artifactId>unirest-java-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.konghq</groupId>
|
|
|
|
<artifactId>unirest-modules-gson</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- MongoDB -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Redis -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.lettuce</groupId>
|
|
|
|
<artifactId>lettuce-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
<artifactId>jedis</artifactId>
|
|
|
|
</dependency>
|
2024-09-13 17:32:08 -07:00
|
|
|
|
|
|
|
<!-- Error Reporting & Metrics -->
|
2024-09-16 16:56:15 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.sentry</groupId>
|
|
|
|
<artifactId>sentry-spring-boot-starter-jakarta</artifactId>
|
|
|
|
<version>8.0.0-alpha.4</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-09-13 17:32:08 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.questdb</groupId>
|
|
|
|
<artifactId>questdb</artifactId>
|
|
|
|
<version>8.1.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|