Backend/pom.xml

202 lines
6.7 KiB
XML
Raw Normal View History

2024-04-06 03:10:15 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
<groupId>cc.fascinated</groupId>
2024-04-10 09:48:15 +00:00
<artifactId>Minecraft-Utilities</artifactId>
<version>1.0.0</version>
2024-04-06 03:10:15 +00:00
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.1</version>
2024-04-06 03:10:15 +00:00
<relativePath/> <!-- lookup parent from repository -->
</parent>
2024-04-10 09:48:15 +00:00
<!-- Build Steps -->
2024-04-06 05:14:44 +00:00
<build>
2024-04-10 09:48:15 +00:00
<finalName>${project.artifactId}</finalName>
2024-04-06 05:14:44 +00:00
<plugins>
2024-04-10 09:48:15 +00:00
<!-- Spring -->
2024-04-06 05:14:44 +00:00
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2024-04-10 09:48:15 +00:00
<executions>
<execution>
<id>build-info</id>
<goals>
<goal>build-info</goal>
</goals>
<configuration>
<additionalProperties>
<description>${project.description}</description>
</additionalProperties>
</configuration>
</execution>
</executions>
2024-04-06 05:14:44 +00:00
</plugin>
</plugins>
</build>
2024-04-10 06:43:13 +00:00
<repositories>
<!-- Jitpack - Used for dnsjava -->
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
2024-04-06 03:10:15 +00:00
<dependencies>
<!-- Spring -->
2024-04-06 03:10:15 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
2024-04-06 03:10:15 +00:00
</dependency>
2024-04-17 23:25:44 +00:00
<!-- Websockets -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
<!-- Redis for caching -->
2024-04-06 03:10:15 +00:00
<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>
2024-04-06 03:10:15 +00:00
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
2024-04-06 03:10:15 +00:00
</dependency>
2024-04-18 12:31:22 +00:00
<!-- MongoDB for data storage -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<!-- Libraries -->
2024-04-06 03:10:15 +00:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.34</version>
<scope>provided</scope>
2024-04-06 03:10:15 +00:00
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.11.0</version>
2024-04-06 03:10:15 +00:00
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.jodah</groupId>
<artifactId>expiringmap</artifactId>
<version>0.5.11</version>
2024-04-06 04:55:48 +00:00
<scope>compile</scope>
2024-04-06 03:10:15 +00:00
</dependency>
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-chat</artifactId>
<version>1.20-R0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
<scope>compile</scope>
</dependency>
2024-04-10 11:09:58 +00:00
<dependency>
2024-04-10 11:11:23 +00:00
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.3.1</version>
2024-04-10 11:09:58 +00:00
</dependency>
2024-04-14 08:34:10 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-actuator-autoconfigure</artifactId>
</dependency>
2024-04-10 11:09:58 +00:00
2024-04-21 17:41:53 +00:00
<!-- Sentry -->
<dependency>
<groupId>io.sentry</groupId>
2024-04-21 17:50:57 +00:00
<artifactId>sentry-spring-boot-starter-jakarta</artifactId>
<version>7.12.1</version>
2024-04-21 17:41:53 +00:00
</dependency>
2024-04-14 08:34:10 +00:00
<!-- InfluxDB Metrics -->
<dependency>
<groupId>com.influxdb</groupId>
<artifactId>influxdb-spring</artifactId>
<version>7.1.0</version>
2024-04-14 08:34:10 +00:00
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.influxdb</groupId>
<artifactId>influxdb-client-java</artifactId>
<version>7.1.0</version>
2024-04-14 08:34:10 +00:00
</dependency>
2024-04-10 11:11:23 +00:00
2024-04-10 06:43:13 +00:00
<!-- DNS Lookup -->
<dependency>
<groupId>com.github.dnsjava</groupId>
<artifactId>dnsjava</artifactId>
<version>v3.5.2</version>
<scope>compile</scope>
</dependency>
2024-04-10 08:51:31 +00:00
<!-- SwaggerUI -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.6.0</version>
2024-04-10 08:51:31 +00:00
<scope>compile</scope>
</dependency>
2024-04-21 22:27:44 +00:00
<!-- GeoIP - IP Lookups -->
<dependency>
<groupId>com.maxmind.geoip2</groupId>
<artifactId>geoip2</artifactId>
<version>4.2.0</version>
</dependency>
<!-- Archive Utilities -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>4.10.0</version>
2024-04-21 22:27:44 +00:00
</dependency>
<!-- Tests -->
2024-04-08 06:20:25 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2024-04-10 06:43:13 +00:00
<dependency>
<groupId>com.github.codemonstur</groupId>
<artifactId>embedded-redis</artifactId>
<version>1.4.3</version>
<scope>test</scope>
</dependency>
2024-04-18 12:55:02 +00:00
<dependency>
<groupId>de.flapdoodle.embed</groupId>
2024-04-18 13:03:52 +00:00
<artifactId>de.flapdoodle.embed.mongo.spring3x</artifactId>
<version>4.15.0</version>
2024-04-18 15:38:08 +00:00
<scope>test</scope>
2024-04-18 12:55:02 +00:00
</dependency>
2024-04-06 03:10:15 +00:00
</dependencies>
</project>