Nameing update to zz_ for launch purposes

This commit is contained in:
nzBryce101
2024-05-11 11:05:27 +12:00
parent 7d30515539
commit bb4c677569
13 changed files with 63 additions and 48 deletions

38
pom.xml
View File

@@ -6,13 +6,13 @@
<groupId>com.example</groupId>
<artifactId>MCdiscord_bot</artifactId>
<version>1.1be04</version>
<version>1.1be06</version>
<packaging>jar</packaging> <!-- Specify the correct packaging type here -->
<properties>
<!-- Specify Java version -->
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>22</maven.compiler.source>
<maven.compiler.target>22</maven.compiler.target>
</properties>
<repositories>
@@ -53,7 +53,7 @@
<dependency>
<groupId>com.discord4j</groupId>
<artifactId>discord4j-core</artifactId>
<version>3.3.0-RC1</version>
<version>3.2.6</version>
</dependency>
@@ -71,14 +71,7 @@
<!-- Add other dependencies as needed -->
<dependency>
<groupId>net.katsstuff</groupId>
<artifactId>ackcord-data_sjs1_2.13</artifactId>
<version>2.0.0.0-M1</version>
</dependency>
</dependencies>
<build>
@@ -96,7 +89,7 @@
<configuration>
<artifactSet>
<includes>
<include>club.minced.discord4j</include>
<include>com.discord4j</include>
</includes>
</artifactSet>
<relocations>
@@ -109,8 +102,23 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.2.0</version> <!-- Use the latest version -->
<executions>
<execution>
<id>analyze-dependencies</id>
<phase>validate</phase> <!-- Choose the appropriate phase -->
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<!-- Configuration options if needed -->
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>