Go to file
2022-03-04 17:02:16 -06:00
.gradle Update to match Maven 2022-02-09 23:12:30 -06:00
.idea Update to match Maven 2022-02-09 23:12:30 -06:00
build Update to match Maven 2022-02-09 23:12:30 -06:00
gradle/wrapper Functionality Update 2022-02-05 22:05:33 -06:00
src/main Removed unnecessary allowConsole check 2022-03-04 17:02:16 -06:00
.gitattributes Initial commit 2022-01-30 10:12:31 -06:00
.gitignore Update to match Maven 2022-02-09 23:12:30 -06:00
build.gradle Update to match Maven 2022-02-09 23:12:30 -06:00
gradlew Functionality Update 2022-02-05 22:05:33 -06:00
gradlew.bat Functionality Update 2022-02-05 22:05:33 -06:00
pom.xml Initial commit 2022-01-30 10:12:31 -06:00
README.md Update to match Maven 2022-02-09 23:12:30 -06:00
settings.gradle Update to match Maven 2022-02-09 23:12:30 -06:00
SimplexCL.iml Initial commit 2022-01-30 10:12:31 -06:00

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:

plugins { id "com.github.johnrengelman.shadow" version "7.1.2" } repositories { maven { name = 'sonatype' url = 'https://s01.oss.sonatype.org/content/groups/public/' } } dependencies { shadow 'io.github.simplexdevelopment:SimplexCL:1.0.0' }