TheNextLvlTheNextLvl

Repository

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

Add Protect's API codebase as a dependency:

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

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

Last updated on

On this page