Skip to content

Latest commit

 

History

History
80 lines (69 loc) · 3.5 KB

File metadata and controls

80 lines (69 loc) · 3.5 KB


License GitHub Issues GitHub Release Status GitHub Prerelease Status GitHub Version Discord Ko-Fi

For Server Owners

Installation

  1. Get a reasonably up-to-date version of Bukkit (We've tested 1.15 and 1.16). We recommend Tuinity if possible, Paper otherwise.
  2. 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.
  3. Grab the latest version of this plugin here. If you want a development version, look here. Drop it into your plugins folder.
  4. Stop your server if it was running. Start your server.
  5. You're done!

For Developers

Installation

First, add this to your pom.xml or build.gradle

Maven

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>

Gradle

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!