2020-11-08 11:34:48 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-08 03:39:05 -04:00
|
|
|
<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>
|
|
|
|
<artifactId>discord4j</artifactId>
|
|
|
|
<name>discord4j</name>
|
|
|
|
<description>Demo Discord bot using Discord4J + Spring Boot</description>
|
2020-11-08 11:34:48 -05:00
|
|
|
|
2021-03-29 03:37:03 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-boot-2</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../parent-boot-2</relativePath>
|
|
|
|
</parent>
|
2020-11-08 11:34:48 -05:00
|
|
|
|
2021-05-08 03:39:05 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.discord4j</groupId>
|
|
|
|
<artifactId>discord4j-core</artifactId>
|
2022-01-17 08:03:32 -05:00
|
|
|
<version>${discord4j-core.version}</version>
|
2021-05-08 03:39:05 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-11-08 11:34:48 -05:00
|
|
|
|
2021-05-08 03:39:05 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-11-08 11:34:48 -05:00
|
|
|
|
2021-03-29 03:37:03 -04:00
|
|
|
<properties>
|
2022-01-17 08:03:32 -05:00
|
|
|
<discord4j-core.version>3.1.1</discord4j-core.version>
|
2021-03-29 03:37:03 -04:00
|
|
|
</properties>
|
2020-11-08 11:34:48 -05:00
|
|
|
|
2021-05-08 03:39:05 -04:00
|
|
|
</project>
|