Developers
The VaroPlugin has an API which can be used to write extensions or get information about the game for use in your own plugin. To access the API you have to add the VaroPlugin as a dependency using either Maven or Gradle.
Please always make sure to respect the VaroPlugin license when writing plugins or other software that depend on the VaroPlugin.
Maven
First you have to add the Maven repository:
<repository>
<id>varoplugin-releases</id>
<name>VaroPlugin Repository</name>
<url>https://repo.varoplugin.de/releases</url>
</repository>
You can than include Varo Plugin as a dependency. Make sure to replace 5.x.x with the correct version.
<dependency>
<groupId>de.varoplugin</groupId>
<artifactId>VaroPlugin</artifactId>
<version>5.x.x</version>
</dependency>
Gradle
First you have to add the Maven repository:
maven {
name = "varoplugin-releases"
url = uri("https://repo.varoplugin.de/releases")
}
You can than include Varo Plugin as a dependency. Make sure to replace 5.x.x with the correct version.
implementation("de.varoplugin:VaroPlugin:5.x.x")