2024-04-24 13:05:39 -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>
|
|
|
|
|
|
|
|
<!--Project Details-->
|
|
|
|
<groupId>cc.restfulmc</groupId>
|
|
|
|
<artifactId>DiscordBot</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
|
|
|
<!-- Properties -->
|
|
|
|
<properties>
|
2024-04-24 15:01:08 -07:00
|
|
|
<java.version>17</java.version>
|
2024-04-24 13:05:39 -07:00
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2024-04-24 15:01:08 -07:00
|
|
|
<slf4j.version>2.1.0-alpha1</slf4j.version>
|
2024-04-24 13:05:39 -07:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
2024-04-24 16:12:47 -07:00
|
|
|
<finalName>${project.artifactId}</finalName>
|
2024-04-24 13:05:39 -07:00
|
|
|
<plugins>
|
|
|
|
<!-- Used for compiling the source code with the proper Java version -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.13.0</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
|
|
|
|
<!-- Enable incremental builds, this is reversed due to -->
|
|
|
|
<!-- a bug as seen in https://issues.apache.org/jira/browse/MCOMPILER-209 -->
|
|
|
|
<useIncrementalCompilation>false</useIncrementalCompilation>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<!-- Handles shading of dependencies in the final output jar -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.5.3</version>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2024-04-24 16:21:17 -07:00
|
|
|
|
|
|
|
<!-- Specify the apps main class -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>cc.restfulmc.bot.DiscordBot</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-04-24 13:05:39 -07:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<!-- Repositories -->
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>rainnny-repo-public</id>
|
|
|
|
<url>https://maven.rainnny.club/public</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<!-- Dependencies -->
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.32</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2024-04-24 15:01:08 -07:00
|
|
|
|
|
|
|
<!-- Libraries -->
|
2024-04-24 13:05:39 -07:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.dv8tion</groupId>
|
|
|
|
<artifactId>JDA</artifactId>
|
|
|
|
<version>5.0.0-beta.23</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>club.minnced</groupId>
|
|
|
|
<artifactId>opus-java</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cc.restfulmc</groupId>
|
|
|
|
<artifactId>Java-SDK</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-04-24 15:01:08 -07:00
|
|
|
|
|
|
|
<!-- Logging -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2024-04-24 13:05:39 -07:00
|
|
|
</dependencies>
|
|
|
|
</project>
|