Developers
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")