> For the complete documentation index, see [llms.txt](https://snpc.docs.snake.rip/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://snpc.docs.snake.rip/developers/repositories.md).

# Repositories

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

```gradle
maven {
    url "https://nexus.snake.rip/repository/snake"
}
```

```gradle
implementation("com.isnakebuzz:ServerNPC-API:1.16.3-RELEASE")
```

#### For maven

```xml
<repository>
    <id>snake-repo</id>
    <url>https://nexus.snake.rip/repository/snake/</url>
</repository>
```

```xml
<dependency>
  <groupId>com.isnakebuzz</groupId>
  <artifactId>ServerNPC-API</artifactId>
  <version>1.16.3-RELEASE</version>
</dependency>
```
