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

Latest commit

 

History

History
28 lines (20 loc) · 1.04 KB

README.md

File metadata and controls

28 lines (20 loc) · 1.04 KB

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"
}