🔧 Installation

Installation guide for AdriAPI

For server owners:

  • Download the plugin's jar

  • Move it to your plugins folder

  • Restart server (Or use Plugman, as it should be compatible)

  • That's it!

For developers:

To import the API, you have to first import the GitHub Packages repository. Then, you can import AdriAPI as "me.adrigamer2950:adriapi:VERSION". You will have to replace VERSION with the version of the API you want to use, available versions are specified at AdriAPI Releases Tab since 1.1.1. Here's some examples of importing AdriAPI:

For Gradle:

repositories {
    maven {
        url = uri("https://maven.pkg.github.com/Adrigamer2950/AdriAPI")
    }
}

dependencies {
    compileOnly "me.adrigamer2950:adriapi:1.1.1"
}

Maven:

<repositories>
    <repository>
        <id>github</id>
        <url>https://maven.pkg.github.com/Adrigamer2950/AdriAPI</url>
    </repository>
</repositories>

<dependency>
    <groupId>me.adrigamer2950</groupId>
    <artifactId>adriapi</artifactId>
    <version>1.1.1</version>
</dependency>

Last updated