Installation
Adding Dependency
In order to use ColorParser you will need to download it using a BuildTool like Maven or Gradle.
Gradle Kotlin DSL
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.
Last updated on