mirror of
https://github.com/SimplexDevelopment/SimplexCL.git
synced 2024-11-14 14:33:34 +00:00
24 lines
689 B
Markdown
24 lines
689 B
Markdown
# SimplexCL
|
|
|
|
This is an abstracted command system designed to make Paper's default command loading and building cleaner and prettier. There are numerous things you can do, and a Javadoc will be provided soon. Everything inside the plugin is docced and you can find doccing in the source as well.
|
|
|
|
To use this in your plugin, simply add the following to your build.gradle:
|
|
|
|
<code>
|
|
plugins {
|
|
id "com.github.johnrengelman.shadow" version "7.1.2"
|
|
}
|
|
</code>
|
|
<code>
|
|
repositories {
|
|
maven {
|
|
name = 'sonatype'
|
|
url = 'https://s01.oss.sonatype.org/content/groups/public/'
|
|
}
|
|
}
|
|
</code>
|
|
<code>
|
|
dependencies {
|
|
shadow 'io.github.simplexdevelopment:SimplexCL:1.0.0'
|
|
}
|
|
</code> |