Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 449 Bytes

setup-dev.md

File metadata and controls

23 lines (17 loc) · 449 Bytes

Building custom source

Building

To build SWM, execute the following command int the project root:

mvn clean install

Using the API

If your plugin wants to use Slime World Manager add the following in your pom.xml

Maven

<dependency>
    <groupId>net.swofty</groupId>
    <artifactId>swoftyworldmanager-api</artifactId>
    <version>(insert latest version here)</version>
    <scope>provided</scope>
</dependency>