Getting Started
- Add the Guilds dependency in your project:
info
You need to use the plugin's jar as dependency.
Maven
<dependency>
<groupId>me.leoo.guilds</groupId>
<artifactId>bukkit</artifactId>
<version>Tag</version>
<scope>system</scope>
<systemPath>${project.basedir}/path/to/plugin.jar</systemPath>
</dependency>
Gradle
dependencies {
implementation files("${project.projectDir}/path/to/plugin.jar")
}
note
Replace Tag
with the version number. You can find the available versions in the Releases page.
Replace path/to/plugin.jar with the path to the plugin's jar file.