Skip to content
This repository has been archived by the owner on Oct 1, 2021. It is now read-only.

(Moved into idofront) Our common dependencies packaged into a Spigot plugin

License

Notifications You must be signed in to change notification settings

MineInAbyss/KotlinSpice

 
 

Repository files navigation

Java CI with Gradle Package

KotlinSpice

A gradle Java platform for common libraries for our Minecraft plugins.

We are no longer using it as an additional spigot plugin, instead we download these dependencies dynamically using Slimjar.

Usage

Updated wiki coming soon(tm).

Gradle

repositories {
    maven  { url 'https://repo.mineinabyss.com/releases' }
}

dependencies {
    compileOnly platform("com.mineinabyss:kotlinspice:$kotlinVersion+")
    //Add optional deps without specifying a version!
    //(The appropriate repo must still be provided for them)
    compileOnly "com.github.okkero:skedule"
    compileOnly "de.erethon:headlib"
}