Updated Source Files for Version 0.3-Pre

This commit is contained in:
AdzelFirestar
2025-06-07 11:22:22 -07:00
parent 5e5ac05b72
commit 6510c4bf8c
15 changed files with 495 additions and 105 deletions

39
pom.xml
View File

@ -5,7 +5,7 @@
<groupId>com.adzel.velocitybroadcast</groupId>
<artifactId>velocitybroadcast</artifactId>
<version>0.2-pre</version>
<version>0.3-pre</version>
<packaging>jar</packaging>
<name>VelocityBroadcast</name>
<description>Broadcast plugin for Minecraft Velocity proxy.</description>
@ -21,6 +21,10 @@
<id>velocitypowered-repo</id>
<url>https://repo.velocitypowered.com/releases/</url>
</repository>
<repository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
</repositories>
<dependencies>
@ -45,6 +49,34 @@
<artifactId>adventure-text-minimessage</artifactId>
<version>4.15.0</version>
</dependency>
<!-- JSON Wrapper -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20240303</version>
</dependency>
<!-- SQLite -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.43.2.2</version>
</dependency>
<!-- MySQL Connector -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.4.0</version>
</dependency>
<!-- Snake YAML -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.2</version>
</dependency>
</dependencies>
<build>
@ -71,8 +103,7 @@
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<!-- No relocations anymore -->
<minimizeJar>false</minimizeJar>
</configuration>
</execution>
</executions>
@ -80,3 +111,5 @@
</plugins>
</build>
</project>
<!-- This is a Maven POM file for the VelocityBroadcast plugin.
It defines the project structure, dependencies, and build configuration. -->