Installation
Adding Dependency
In order to use ThreadUtil you will need to download it using a BuildTool like Maven or Gradle. We also highly recommend relocating/shading the library into your own package.
You may add whichever platform adapter you need. In this example we add the bukkit adapter for Bukkit, Spigot and Paper support.
Gradle Kotlin DSL
Add Repository
build.gradle.kts
repositories {
mavenCentral()
}
Add Dependency
build.gradle.kts
dependencies {
implementation("io.github.milkdrinkers:threadutil-bukkit:VERSION")
}
Shade Dependency
build.gradle.kts
plugins {
id("com.gradleup.shadow") version "8.3.6"
}
tasks {
shadowJar {
relocate("io.github.milkdrinkers.threadutil", "yourpackage.threadutil")
}
}
Well done! Next up have a look at all the available Platforms.
Last updated on