TheNextLvlTheNextLvl

Repository

How to add the Worlds API to your project.

GitHub Edit on GitHub

Add our Repository

To start, add our repository to your project:

<repository>
  <id>thenextlvl-releases</id>
  <name>TheNextLvl</name>
  <url>https://repo.thenextlvl.net/releases</url>
</repository>
maven {
  name = "thenextlvlReleases"
  url = uri("https://repo.thenextlvl.net/releases")
}
maven {
  name "thenextlvlReleases"
  url "https://repo.thenextlvl.net/releases"
}
resolvers += 
  "thenextlvl-releases" 
    at "https://repo.thenextlvl.net/releases"

Add the Worlds API

Add Worlds' API codebase as a dependency:

<dependency>  <groupId>net.thenextlvl</groupId>  <artifactId>worlds</artifactId>  <version>3.6.0</version></dependency>
implementation("net.thenextlvl:worlds:3.6.0")
implementation "net.thenextlvl:worlds:3.6.0"
"net.thenextlvl" %% "worlds" %% "3.6.0"

Note

The version of the Worlds API is the same as the version of the Worlds plugin.
You can find all versions on the repository.

Last updated on