Bat/pom.xml

70 lines
1.9 KiB
XML
Raw Normal View History

2024-06-23 20:37:24 +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 https://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.3.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>cc.fascinated</groupId>
<artifactId>Bat</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Bat</name>
<description>Bat Bot for Discord</description>
<properties>
<java.version>21</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
2024-06-24 12:56:01 +00:00
<!-- Spring -->
2024-06-23 20:37:24 +00:00
<dependency>
<groupId>org.springframework.boot</groupId>
2024-06-24 12:56:01 +00:00
<artifactId>spring-boot-starter-web</artifactId>
2024-06-23 20:37:24 +00:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
2024-06-24 12:56:01 +00:00
<artifactId>spring-boot-starter-data-mongodb</artifactId>
2024-06-23 20:37:24 +00:00
</dependency>
<!-- Libraries -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.32</version>
<scope>provided</scope>
</dependency>
2024-06-24 12:56:01 +00:00
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.3.1</version>
</dependency>
2024-06-23 20:37:24 +00:00
<!-- Dependencies -->
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>5.0.0-beta.24</version>
</dependency>
2024-06-24 12:56:01 +00:00
<!-- Test Dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2024-06-23 20:37:24 +00:00
</dependencies>
</project>