Getting started

Requirements

  • have SynkLibs installed on your server

  • have the plugin installed on your server

  • Java 8 or higher

Download the plugin

Download the plugin in a few clicks! It's all in here

Install the plugin on your server

Drop the plugin on your server, and restart it!

Add the API to your plugin

You need to add the API to your dependancy manager

Maven
<repository>
  <id>synkdev-repo</id>
  <name>SynkDev Repository</name>
  <url>https://maven.synkdev.cc/releases</url>
</repository>

<dependency>
  <groupId>cc.synkdev</groupId>
  <artifactId>AbilityitemsAPI</artifactId>
  <version>1.1</version>
  <scope>provided</scope>
</dependency>
Gradle Kotlin
maven {
    url = uri("https://maven.synkdev.cc/releases")
}

implementation("cc.synkdev:AbilityitemsAPI:1.1")
Gradle Groovy
maven {
    url "https://maven.synkdev.cc/releases"
}

implementation "cc.synkdev:AbilityitemsAPI:1.1"

JavaDocs

For any additional informations, visit the Javadocs!

Last updated