ColorParser
Installation

Installation

Adding Dependency

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

Add Repository

repositories {
    maven("https://jitpack.io")
}

Add Dependency

dependencies {
    implementation("com.github.milkdrinkers:colorparser:VERSION")
}

Shade Dependency

plugins {
    id("com.github.johnrengelman.shadow") version "8.1.1"
}
 
tasks {
    shadowJar {
        relocate("com.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 (opens in a new tab). And versions here (opens in a new tab).

Add Dependency

dependencies {
    implementation("net.kyori:adventure-api:VERSION")
    implementation("net.kyori:adventure-text-minimessage:VERSION")
}