Repository
Edit on GitHubAdd 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 Characters API
Add Characters' API codebase as a dependency:
<dependency> <groupId>net.thenextlvl</groupId> <artifactId>characters</artifactId> <version>0.6.0</version></dependency>implementation("net.thenextlvl:characters:0.6.0")implementation "net.thenextlvl:characters:0.6.0""net.thenextlvl" %% "characters" %% "0.6.0"Note
The version of the Characters API is the same as the version of the Characters plugin.
You can find all versions on the repository.
Last updated on