Bat/pom.xml

134 lines
3.6 KiB
XML
Raw Normal View History

2024-06-23 21:37:24 +01: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>
2024-12-27 12:50:13 +00:00
<version>3.4.1</version>
2024-06-23 21:37:24 +01:00
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>cc.fascinated</groupId>
<artifactId>Bat</artifactId>
<version>0.0.1-SNAPSHOT</version>
2024-06-23 21:37:24 +01:00
<name>Bat</name>
<description>Bat Bot for Discord</description>
<properties>
2024-12-27 13:48:53 +00:00
<java.version>21</java.version>
2024-06-23 21:37:24 +01:00
</properties>
2024-12-27 13:48:53 +00:00
<!-- Build Config -->
2024-06-23 21:37:24 +01:00
<build>
2024-06-24 15:45:53 +01:00
<finalName>${project.artifactId}</finalName>
2024-06-23 21:37:24 +01:00
<plugins>
2024-12-27 13:48:53 +00:00
<!-- Spring -->
2024-06-23 21:37:24 +01:00
<plugin>
2024-12-27 13:48:53 +00:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2024-06-24 15:45:53 +01:00
<executions>
<execution>
2024-12-27 13:48:53 +00:00
<id>build-info</id>
2024-06-24 15:45:53 +01:00
<goals>
2024-12-27 13:48:53 +00:00
<goal>build-info</goal>
2024-06-24 15:45:53 +01:00
</goals>
2024-12-27 13:48:53 +00:00
<configuration>
<additionalProperties>
<description>${project.description}</description>
</additionalProperties>
</configuration>
2024-06-24 15:45:53 +01:00
</execution>
</executions>
</plugin>
2024-06-23 21:37:24 +01:00
</plugins>
</build>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
2024-06-24 15:45:53 +01:00
2024-06-23 21:37:24 +01:00
<dependencies>
2024-06-24 13:56:01 +01:00
<!-- Spring -->
2024-06-23 21:37:24 +01:00
<dependency>
<groupId>org.springframework.boot</groupId>
2024-06-24 13:56:01 +01:00
<artifactId>spring-boot-starter-web</artifactId>
2024-06-23 21:37:24 +01:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
2024-06-24 13:56:01 +01:00
<artifactId>spring-boot-starter-data-mongodb</artifactId>
2024-06-23 21:37:24 +01:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
<dependency>
<groupId>io.sentry</groupId>
<artifactId>sentry-spring-boot-starter-jakarta</artifactId>
<version>7.16.0</version>
</dependency>
2024-07-01 21:20:39 +01: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-06-23 21:37:24 +01:00
<!-- Libraries -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.34</version>
2024-06-23 21:37:24 +01:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.github.freya022</groupId>
2024-06-23 21:37:24 +01:00
<artifactId>JDA</artifactId>
<version>2ed819ad15</version>
2024-07-04 08:47:32 -04:00
<scope>compile</scope>
2024-06-23 21:37:24 +01:00
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.11.0</version>
2024-07-04 08:47:32 -04:00
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.4.1</version>
2024-07-04 08:47:32 -04:00
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.jodah</groupId>
<artifactId>expiringmap</artifactId>
<version>0.5.11</version>
2024-07-04 08:47:32 -04:00
<scope>compile</scope>
2024-06-24 13:56:01 +01:00
</dependency>
2024-07-05 22:33:00 +01:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.12.0</version>
</dependency>
2024-07-16 14:35:02 +01:00
<dependency>
<groupId>com.github.Steppschuh</groupId>
<artifactId>Java-Markdown-Generator</artifactId>
<version>1.3.2</version>
</dependency>
2024-06-23 21:37:24 +01:00
</dependencies>
</project>