Skip to content

Latest commit

 

History

History
55 lines (40 loc) · 974 Bytes

getting-started.md

File metadata and controls

55 lines (40 loc) · 974 Bytes
description
Get started with Enchanted

Getting Started

{% hint style="danger" %} This version is unstable. Anything may change. {% endhint %}

About

Enchanted is a lightweight, annotation-driven command library.

Installation

Add the following to your build file:

{% tabs %} {% tab title="Gradle (Kotlin DSL)" %}

repositories {
    maven("https://repo.jailgens.net/releases")
}

dependencies {
    implementation("net.jailgens:enchanted-paper:0.1.1")
}

{% endtab %}

{% tab title="Gradle (Groovy DSL)" %}

repositories {
    maven {
        url 'https://repo.jailgens.net/releases'
    }
}

dependencies {
    implementation 'net.jailgens:enchanted-paper:0.1.1'
}

{% endtab %} {% endtabs %}

We use SemVer.

Documentation

📔 JavaDocs

Repository

JailGens/enchanted