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.2.4</version>
|
|
|
|
<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>
|
2024-04-10 10:39:17 +00:00
|
|
|
<!-- Spring -->
|
2024-04-06 03:10:15 +00:00
|
|
|
<dependency>
|
2024-04-10 10:39:17 +00:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2024-04-06 03:10:15 +00:00
|
|
|
</dependency>
|
|
|
|
|
2024-04-10 10:39:17 +00:00
|
|
|
<!-- Redis for caching -->
|
2024-04-06 03:10:15 +00:00
|
|
|
<dependency>
|
2024-04-10 10:39:17 +00:00
|
|
|
<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>
|
2024-04-10 10:39:17 +00:00
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
<artifactId>jedis</artifactId>
|
2024-04-06 03:10:15 +00:00
|
|
|
</dependency>
|
2024-04-10 10:39:17 +00:00
|
|
|
|
|
|
|
<!-- Libraries -->
|
2024-04-06 03:10:15 +00:00
|
|
|
<dependency>
|
2024-04-10 10:39:17 +00:00
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.32</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.10.1</version>
|
|
|
|
<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>
|
2024-04-06 20:40:03 +00:00
|
|
|
<dependency>
|
2024-04-10 10:39:17 +00:00
|
|
|
<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>
|
2024-04-06 20:40:03 +00:00
|
|
|
<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-08 06:20:25 +00:00
|
|
|
|
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.0.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2024-04-10 10:39:17 +00:00
|
|
|
<!-- 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-06 03:10:15 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|