Skip to main content

Quick Start

This guide will help you set up your development environment and start hooking into CommandPanels using Maven or Gradle.

Maven

Add the JitPack repository to your pom.xml inside the <repositories> block:

<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>

Add the CommandPanels dependency inside the <dependencies> block:

<dependencies>
<dependency>
<groupId>com.github.rockyhawk64</groupId>
<artifactId>CommandPanels</artifactId>
<version>d9a3ae6981</version>
<scope>provided</scope>
</dependency>
</dependencies>

Gradle Kotlin DSL

Add the JitPack repository to your settings.gradle.kts file:

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}

Add the dependency to your build.gradle.kts file:

dependencies {
compileOnly("com.github.rockyhawk64:CommandPanels:d9a3ae6981")
}

Gradle (Groovy)

Add the JitPack repository to your build.gradle inside the repositories block, and then add the dependency to your dependencies block:

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}

Add the dependency to your build.gradle file:

dependencies {
compileOnly 'com.github.rockyhawk64:CommandPanels:d9a3ae6981'
}