TheNextLvlTheNextLvl

Repository

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

Add Holograms' API codebase as a dependency:

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

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

Last updated on

On this page