using shading on the Jar

switched to Discord4j instead of JDA
getEventDispatcher() not working
NEW be04 version
This commit is contained in:
nzBryce101
2024-04-23 00:32:35 +12:00
parent dd21b58774
commit 7d30515539
13 changed files with 159 additions and 94 deletions

View File

@@ -0,0 +1,93 @@
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>MCdiscord_bot</artifactId>
<version>1.1be04</version>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>net.dv8tion:JDA</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>net.dv8tion</pattern>
<shadedPattern>com.example.MCdiscordbot.shaded.net.dv8tion</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spigot-repo</id>
<name>spigot-1.20.4</name>
<url>https://repo.rosewooddev.io/repository/public/</url>
</repository>
<repository>
<id>buk-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>jcenter</id>
<name>jcenter-bintray</name>
<url>https://jcenter.bintray.com</url>
</repository>
<repository>
<id>discordJDA</id>
<name>JDA for Discord</name>
<url>https://github.com/DV8FromTheWorld/JDA</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.15.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.20.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.23.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.23.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.katsstuff</groupId>
<artifactId>ackcord-data_sjs1_2.13</artifactId>
<version>2.0.0.0-M1</version>
<scope>compile</scope>
</dependency>
</dependencies>
<properties>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
</properties>
</project>