Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 553 Bytes

setup-dev.md

File metadata and controls

28 lines (22 loc) · 553 Bytes

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

<repository>
    <id>swm-repo</id>
    <url>https://repo.glaremasters.me/repository/concuncan/</url>
</repository>
<dependency>
    <groupId>com.grinderwolf</groupId>
    <artifactId>slimeworldmanager-api</artifactId>
    <version>(insert latest version here)</version>
    <scope>provided</scope>
</dependency>