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.TheComputerGeek2:MagicSpells:1507fdf'
}
dependencies {
implementation("com.github.TheComputerGeek2:MagicSpells:1507fdf")
}
<dependency>
<groupId>com.github.TheComputerGeek2</groupId>
<artifactId>MagicSpells</artifactId>
<version>1507fdf</version>
</dependency>
libraryDependencies += "com.github.TheComputerGeek2" % "MagicSpells" % "1507fdf"
:dependencies [[com.github.TheComputerGeek2/MagicSpells "1507fdf"]]
MagicSpells is a PaperMC plugin which gives its users the ability to modify their Minecraft servers by configuring existing features without writing Java code. It provides you with the tools for playing with blocks of logic, bringing other plugins together, playing fantastic special effects, making your own new mechanics, and more.
Check out more examples of what this plugin can do in our Discord server (in the resources channel and workshop channel).
This plugin was originally created by Nisovin, and published on Bukkit. After some time TheComputerGeek2 took over the project and published it on Spigot. Since then, we dropped support for Spigot and moved to PaperMC, and the plugin was published on Modrinth and Hangar.
If you need help with the plugin, our Discord server can provide you community support. You can also post suggestions there or find more resources that can be useful for you.

The move to Gradle has made building much easier. After cloning and navigating to the source's directory, you can simply run this command:
./gradlew build
The plugin jar will be in the core/build/libs directory.
MagicSpells is licensed under GNU General Public License v3. For details, see LICENSE file in the root directory.
NOTICE file.repositories {
maven {url "https://jitpack.io"}
}
dependencies {
implementation("com.github.TheComputerGeek2.MagicSpells:core:main-SNAPSHOT") {transitive = false}
}
<repository>
<id>jitpack-repo</id>
<url>https://jitpack.io</url>
</repository>
<dependency>
<groupId>com.github.TheComputerGeek2.MagicSpells</groupId>
<artifactId>core</artifactId>
<version>main-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>