Added /v10lift build worldedit command, closes #80

This commit is contained in:
Stijn Bannink 2023-08-19 19:57:31 +02:00
parent 92a60be306
commit ee9aecce8e
4 changed files with 118 additions and 1 deletions

14
pom.xml
View file

@ -5,7 +5,7 @@
<groupId>tech.sbdevelopment</groupId>
<artifactId>V10Lift</artifactId>
<version>0.8</version>
<version>0.9</version>
<packaging>jar</packaging>
<name>V10Lift</name>
@ -146,6 +146,10 @@
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>enginehub-maven</id>
<url>https://maven.enginehub.org/repo/</url>
</repository>
</repositories>
<dependencies>
@ -196,5 +200,13 @@
<version>5.0.1</version>
<scope>compile</scope>
</dependency>
<!-- WorldEdit, optional for creating lifts -->
<dependency>
<groupId>com.sk89q.worldedit</groupId>
<artifactId>worldedit-bukkit</artifactId>
<version>7.2.9</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>