Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 509 Bytes

USAGE.MD

File metadata and controls

30 lines (24 loc) · 509 Bytes

Installation

Step 1

Add the dependency to your project

repositories {
    maven {
        url "https://repo.pyr.lol/releases/"
    }
}

dependencies {
    implementation "lol.pyr:extendedcommands:VERSION"
}

Step 2

Shade and relocate the dependency into your jar

plugins {
    id "com.github.johnrengelman.shadow" version "8.1.1"
}

shadowJar {
    relocate "lol.pyr.extendedcommands", "your.package.here.lib.command"
    minimize() // Not required but recommended
}