eGlow
Buy eGlowDiscord
  • Home
  • Getting started
    • FAQ
    • Installation
    • Commands & Permissions
    • Placeholders
    • Limitations
  • Guides
    • TabList compatibility
  • Developer API
    • Getting started
    • Accessing the API
  • Configs
    • Config.yml
    • Messages.yml
    • CustomEffects.yml
Powered by GitBook
On this page
  • Setting up the dependency
  • Gradle
  • Maven
  1. Developer API

Getting started

We're proud to announce that we finally have the eGlow API available again!

We do want to mention that this is a stripped down version of eGlow removing all the logic and only leaving the API part available. If you feel like something is missing you can always request something to be added.

Setting up the dependency

Gradle

Groovy

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    compileOnly 'com.github.SlyOtters:EGlow-API:v1.0'
}

Kotlin

repositories {
    maven("https://jitpack.io")
}

dependencies {
    compileOnly("com.github.SlyOtters", "EGlow-API", "v1.0")
}

Maven

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

<dependency>
    <groupId>com.github.SlyOtters</groupId>
    <artifactId>EGlow-API</artifactId>
    <version>v1.0</version>
    <scope>provided</scope>
</dependency>

WARNING: Do NOT shade the API into your jar and do NOT relocate the API from it's original package! If you do the API will not behave as intended! for Gradle make sure it's on compileOnly and for maven <scope>provided<scope>.

PreviousTabList compatibilityNextAccessing the API

Last updated 3 months ago