- 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.
- Add one of the Maven repositories to your build file:
Release:
maven { name = "jitpack" url = uri("https://jitpack.io/") }
- Add the dependency and Lettuce to your build file:
LettuceWrapper:
Lettuce:
KotlinX:
dependencies { implementation("dev.bypixel:LettuceWrapper:VERSION") // optional 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.