Docs | SynkDev
  • Welcome!
  • Deathlogger
    • Getting started
    • Permissions & commands
  • AbilityItemsAPI
    • Getting started
    • Create your items
  • SynkLibs
    • Getting started
  • ChatWatchdog
    • Getting started
    • What does the plugin do?
    • Permissions & commands
    • Use the API!
  • NexusAuctionHouse
    • Getting started
    • Permissions & commands
  • ServerVeil
    • Getting started
    • Permissions & commands
    • Colors
  • King's Anvil
    • Getting started
    • Permissions & commands
    • Explaining the configuration further
    • Rewards
Powered by GitBook
On this page
  • Requirements
  • Download the plugin
  • Install the plugin on your server
  • Add the API to your plugin
  • JavaDocs
  1. AbilityItemsAPI

Getting started

PreviousPermissions & commandsNextCreate your items

Last updated 10 months ago

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

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 !

here
Javadocs