TheNextLvlTheNextLvl

Repository

Add the Portals 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 Portals API

Add Portals' API codebase as a dependency:

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

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

Last updated on

On this page