Getting Started
- Add the Guilds dependency in your project:
Importing the Plugin
- v2.0
- v1.x
warning
Since this is a new API there may be some issues or missing stuff, if you find any please report it on the GitHub Issues or join our Discord Server.
- Maven
- Gradle
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.PixelStudiosDev</groupId>
<artifactId>GuildsAPI</artifactId>
<version>Tag</version>
</dependency>
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.PixelStudiosDev:GuildsAPI:Tag'
}
Latest Utils version (could be
required):
note
Replace Tag
with the version number. You can find the available versions in
the Releases page.
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 version in the jar file name.
Replace path/to/plugin.jar with the path to the plugin's jar file.