Update pom.xml

This commit is contained in:
minster586
2025-07-23 18:43:20 -04:00
parent ecdc9fa589
commit 69b10513af

43
pom.xml
View File

@@ -1 +1,44 @@
<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>
<groupId>com.minster586</groupId>
<artifactId>ServerDevMode</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>ServerDevMode</name>
<description>Development mode plugin for Minecraft servers—tracing events and debugging logs</description>
<url>https://git.smartcraft.me/Smartcraft-MC/SuperDevMode</url>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.16.5-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
</project>