- Lettuce wrapper does not provide Lettuce, you have to add it by yourself.
- LettuceWrapper requires the org.json JSON library, kotlinx-coroutines-core and kotlinx-coroutines-reactive to work properly.
- LettuceWrapper requires Java 21 to run, you can find the latest version of Java here.
- LettuceWrapper requires the latest version of Lettuce to run.
- Development Builds: https://github.com/byPixelTV/LettuceWrapper/actions
- Add one of the Maven repositories to your build file:
Release:
maven { name = "bypixelRepoReleases" url = uri("https://repo.bypixel.dev/releases") }Snapshot:
maven { name = "bypixelRepoSnapshots" url = uri("https://repo.bypixel.dev/snapshots") }
- Add the dependency and Lettuce to your build file:
LettuceWrapper:
Lettuce:
JSON
KotlinX:
dependencies { implementation("dev.bypixel:LettuceWrapper:VERSION") implementation("io.lettuce:lettuce-core:VERSION") implementation("org.json:json:VERSION") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:VERSION") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactive:VERSION") }Replace
VERSIONwith the latest version of LettuceWrapper and Lettuce. 3. Start using LettuceWrapper in your project! For more information, check the docs.