Repositories

ServerNPC have one single repository where you can get the official builds for the API.

For optimal performance, I recommend using the latest version of the plugin. The API is designed to be compatible with the corresponding version of the plugin.

For gradle

maven {
    url "https://nexus.snake.rip/repository/snake"
}
implementation("com.isnakebuzz:ServerNPC-API:1.16.3-RELEASE")

For maven

<repository>
    <id>snake-repo</id>
    <url>https://nexus.snake.rip/repository/snake/</url>
</repository>
<dependency>
  <groupId>com.isnakebuzz</groupId>
  <artifactId>ServerNPC-API</artifactId>
  <version>1.16.3-RELEASE</version>
</dependency>

Last updated