TheNextLvlTheNextLvl

Repository

How to add the PerWorlds 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 PerWorlds API

Add the PerWorlds API as a dependency:

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

Note

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

Last updated on

On this page