Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 1.06 KB

README.md

File metadata and controls

47 lines (37 loc) · 1.06 KB

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>