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.Multiverse:Multiverse-Core:4.3.16'
}
dependencies {
implementation("com.github.Multiverse:Multiverse-Core:4.3.16")
}
<dependency>
<groupId>com.github.Multiverse</groupId>
<artifactId>Multiverse-Core</artifactId>
<version>4.3.16</version>
</dependency>
libraryDependencies += "com.github.Multiverse" % "Multiverse-Core" % "4.3.16"
:dependencies [[com.github.Multiverse/Multiverse-Core "4.3.16"]]
Multiverse was created at the dawn of Bukkit multiworld support. It has since then grown into a complete world management solution! Multiverse provides the easiest to use world management solution for your Minecraft server, big or small, and with great addons like Portals and NetherPortals, what's not to love!
Now it's time to create your very own Multiverse server, do check out our Wiki and Usage Guide to get started. Feel free to hop onto our Discord if you have any question or just want to have a chat with us!
Simply build the source with Gradle:
./gradlew build
More details are available on the build instructions wiki page.
Want to help improve Multiverse? There are several ways you can support and contribute to the project.
Additionally, we would like to give a big thanks to everyone that has supported Multiverse over the years, as well as those in the years to come. Thank you!
Multiverse-Core is licensed under BSD-3-Clause License. Please see LICENSE.md for more info.