Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.NickImpact:SkyClaims:beta-18'
}
dependencies {
implementation("com.github.NickImpact:SkyClaims:beta-18")
}
<dependency>
<groupId>com.github.NickImpact</groupId>
<artifactId>SkyClaims</artifactId>
<version>beta-18</version>
</dependency>
libraryDependencies += "com.github.NickImpact" % "SkyClaims" % "beta-18"
:dependencies [[com.github.NickImpact/SkyClaims "beta-18"]]
SkyClaims is a plugin/addon for SkyBlock servers that run GriefPrevention for protection. Instead of reinventing the wheel and adding custom protection for islands, SkyClaims will implement claims from one of Sponge's most powerful plugins, GriefPrevention! With this design, nearly every GriefPrevention feature will be available to players for managing their islands.
This plugin is in Beta but I expect to have a release soon™. Live support for current builds is available through Discord! Here's some of what is under development or planned for SkyClaims:
If you want to request specific features or provide other feedback please feel free to do so in a ticket or on Discord.