- Get a reasonably up-to-date version of Bukkit (We've tested 1.15 and 1.16). We recommend Tuinity if possible, Paper otherwise.
- Grab the latest version of
ShatteredCore. If you're using a
development version of this plugin, grab a development version of ShatteredCore
here. The jar you want is the
one ending in
-dist.jar
. Drop it into your plugins folder. - Grab the latest version of this plugin here. If you want a development version, look here. Drop it into your plugins folder.
- Stop your server if it was running. Start your server.
- You're done!
First, add this to your pom.xml
or build.gradle
Add the following to your pom.xml
:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<!-- Recommended, but not required. -->
<dependency>
<groupId>com.github.ShatteredSuite</groupId>
<artifactId>ShatteredCore</artifactId>
<version>Tag</version>
</dependency>
<dependency>
<groupId>com.github.ShatteredSuite</groupId>
<artifactId>ShatteredScrolls2</artifactId>
<version>Tag</version>
</dependency>
</dependencies>
Add the following to your build.gradle
:
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.ShatteredSuite:ShatteredCore:Tag' // Recommended, but not required.
implementation 'com.github.ShatteredSuite:ShatteredScrolls2:Tag'
}
Next, add a dependency in your plugin.yml
:
depend:
- ShatteredScrolls
Finally, use any of the features you like!