RESTfulMC/API/pom.xml

154 lines
5.1 KiB
XML
Raw Normal View History

2024-04-05 19:29:30 -07: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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.5</version>
2024-04-05 19:29:30 -07:00
<relativePath/>
</parent>
<!-- Project Details -->
2024-04-22 22:32:42 -07:00
<groupId>cc.restfulmc</groupId>
2024-04-05 19:29:30 -07:00
<artifactId>RESTfulMC</artifactId>
2024-04-10 01:51:18 -07:00
<version>1.0.0</version>
2024-04-10 02:45:38 -07:00
<description>A simple, yet useful RESTful API for Minecraft utilizing Springboot.</description>
2024-04-05 19:29:30 -07:00
<!-- 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 Steps -->
<build>
2024-04-06 21:27:09 -07:00
<finalName>${project.artifactId}</finalName>
2024-04-05 19:29:30 -07:00
<plugins>
2024-04-06 21:27:09 -07:00
<!-- Spring -->
2024-04-05 19:29:30 -07:00
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2024-04-10 02:45:38 -07: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-05 19:29:30 -07:00
</plugin>
</plugins>
</build>
2024-04-06 17:04:40 -07:00
<!-- Repos -->
<repositories>
<!-- Jitpack - Used for dnsjava -->
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
2024-04-05 19:29:30 -07:00
<!-- Depends -->
<dependencies>
2024-04-05 19:47:26 -07:00
<!-- Spring -->
2024-04-05 19:29:30 -07:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
2024-04-06 12:24:03 -07:00
<!-- Redis for caching -->
<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-04-05 19:47:26 -07:00
<!-- Libraries -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.32</version>
<scope>provided</scope>
</dependency>
2024-04-06 11:45:44 -07:00
<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>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-chat</artifactId>
<version>1.20-R0.2</version>
<scope>compile</scope>
</dependency>
2024-04-22 19:47:49 -07:00
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>4.9.2</version>
<scope>compile</scope>
</dependency>
2024-04-05 19:47:26 -07:00
2024-04-06 17:04:40 -07:00
<!-- DNS Lookup -->
<dependency>
<groupId>com.github.dnsjava</groupId>
<artifactId>dnsjava</artifactId>
<version>v3.5.2</version>
<scope>compile</scope>
</dependency>
2024-04-22 19:47:49 -07:00
<!-- GeoIP -->
<dependency>
<groupId>com.maxmind.geoip2</groupId>
<artifactId>geoip2</artifactId>
<version>4.2.0</version>
<scope>compile</scope>
</dependency>
2024-04-10 01:51:18 -07:00
<!-- SwaggerUI -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.5.0</version>
2024-04-10 01:51:18 -07:00
<scope>compile</scope>
</dependency>
2024-04-05 19:29:30 -07:00
<!-- Tests -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.codemonstur</groupId>
<artifactId>embedded-redis</artifactId>
2024-04-07 23:06:15 -07:00
<version>1.4.3</version>
<scope>test</scope>
</dependency>
2024-04-05 19:29:30 -07:00
</dependencies>
</project>