Repository
How to add the PerWorlds API to your project.
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 PerWorlds API
Add the PerWorlds API as a dependency:
<dependency> <groupId>net.thenextlvl</groupId> <artifactId>per-worlds</artifactId> <version>1.0.3</version></dependency>
implementation("net.thenextlvl:per-worlds:1.0.3")
implementation "net.thenextlvl:per-worlds:1.0.3"
"net.thenextlvl" %% "per-worlds" %% "1.0.3"
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