Skip to Content
ColorparserInstallation

Installation

Adding Dependency

In order to use ColorParser you will need to download it using a BuildTool like Maven or Gradle.

Add Repository

build.gradle.kts
repositories { mavenCentral() }

Add Dependency

build.gradle.kts
dependencies { implementation("io.github.milkdrinkers:colorparser:VERSION") }

Shade Dependency

build.gradle.kts
plugins { id("com.gradleup.shadow") version "8.3.6" } tasks { shadowJar { relocate("io.github.milkdrinkers.colorparser", "yourpackage.yourname.colorparser") } }

Platforms Other Than PaperMC

If using Spigot (or any other platform that doesn’t natively ship Adventure), then you will need to add Adventure as a dependency in your project.

Check supported platforms here. And versions here.

Add Dependency

build.gradle.kts
dependencies { implementation("net.kyori:adventure-api:VERSION") implementation("net.kyori:adventure-text-minimessage:VERSION") }
Last updated on