Installation
Adding Dependency
ⓘ
WordWeaver depends on the Adventure library.
In order to use WordWeaver 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.
WordWeaver depends on Kyori’s Adventure library. Unless you are using a Platform that natively ships Adventure like Paper, Velocity or Fabric, you will need to add Adventure as a dependency as well.
Gradle Kotlin DSL
Add Repository
build.gradle.kts
repositories {
mavenCentral()
}
Add Dependency
build.gradle.kts
dependencies {
implementation("io.github.milkdrinkers:WordWeaver:VERSION")
}
Shade Dependency
build.gradle.kts
plugins {
id("com.gradleup.shadow") version "8.3.6"
}
tasks {
shadowJar {
relocate("io.github.milkdrinkers.wordweaver", "yourpackage.wordweaver")
}
}
Well done! Next up have a look at usage.
Last updated on