LiteCommands Help

Dependency

This page will guide you through the process of adding LiteCommands to your project.

Add Panda Repository

Depending on the build system you are using, add the following repository to your project:

Add the following line to your build.gradle.kts file in the repositories section:

maven("https://repo.panda-lang.org/releases")

Add the following lines to your pom.xml file in the repositories section:

<repository> <id>panda-repo</id> <url>https://repo.panda-lang.org/releases</url> </repository>

Add LiteCommands Dependency

Add the following line to your build.gradle.kts file in the dependencies section:

implementation("dev.rollczi:[[[ARTIFACT_ID|platforms.html]]]:3.4.1")

Add the following lines to your pom.xml file in the dependencies section:

<dependency> <groupId>dev.rollczi</groupId> <artifactId>[[[ARTIFACT_ID|platforms.html]]]</artifactId> <version>3.4.1</version> </dependency>
Last modified: 07 December 2023