steakOnFirstJoin/pom.xml

25 lines
1.0 KiB
XML

<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ca.thetechrobo.steakonfirstjoin</groupId>
<artifactId>steakonfirstjoin</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Steak on first join</name>
<description>Does what it says on the tin., Gives a player half a stack of steak if they haven't gotten it already.</description>
<repositories>
<!-- This adds the Spigot Maven repository to the build -->
<repository>
<id>purpur-repo</id>
<url>https://repo.purpurmc.org/snapshots</url>
</repository>
</repositories>
<dependencies>
<!--This adds the Purpur API artifact to the build -->
<dependency>
<groupId>org.purpurmc.purpur</groupId>
<artifactId>purpur-api</artifactId>
<version>1.18.1-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>