Nightly Dependencies
If you want to use the latest features, you can use the nightly version of LiteCommands.
Add the snapshot repository to your project and change the version of LiteCommands:
kotlin
maven { url = uri("https://repo.eternalcode.pl/snapshots") }
groovy
maven { url "https://repo.eternalcode.pl/snapshots" }
xml
<repository>
<id>eternalcode-reposilite-snapshots</id>
<url>https://repo.eternalcode.pl/snapshots</url>
</repository>
kotlin
implementation("dev.rollczi:{platform}:3.9.2-SNAPSHOT")
groovy
implementation "dev.rollczi:{platform}:3.9.2-SNAPSHOT"
xml
<dependency>
<groupId>dev.rollczi</groupId>
<artifactId>{platform}</artifactId>
<version>3.9.2-SNAPSHOT</version>
</dependency>
Remember!
The nightly version may contain bugs and is not recommended for production use.