Skip to content

boxbeam/Ordinate

Repository files navigation

Ordinate

A powerful, platform-agnostic, feature-rich command framework.

Usage

To learn how to use Ordinate, see the wiki and/or read the javadocs.

Installation

To begin, first select your platform. For example, Ordinate-spigot.

The currently supported platforms are:

  • Ordinate-spigot
  • Ordinate-sponge
  • Ordinate-base

Then select your version tag. You can see all available versions here.

Gradle

repositories {
	maven { url = 'https://redempt.dev' }
}
dependencies {
	implementation 'com.github.Redempt:Ordinate-[platform]:[version]'
}

Maven

<repository>
        <id>redempt.dev</id>
        <url>https://redempt.dev</url>
</repository>
<dependency>
        <groupId>com.github.Redempt</groupId>
        <artifactId>Ordinate-[platform]</artifactId>
        <version>[version]</version>
        <scope>compile</scope>
</dependency>