Skip to content

Latest commit

 

History

History
80 lines (69 loc) · 3.05 KB

File metadata and controls

80 lines (69 loc) · 3.05 KB

LettuceWrapper 🥬

GitHub Actions Workflow Status GitHub Actions Workflow Status Snapshots GitHub issues
CodeFactor

A modern coroutine-based wrapper for Lettuce


⛏️ Software Support & Requirements 🎮:

  • 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.

Uses modern technology 🚀

kotlin gradle

🔥 Use LettuceWrapper 🚀

  1. 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")
}
  1. Add the dependency and Lettuce to your build file:

LettuceWrapper:

Latest Version

Snapshot Version

dependencies {
   implementation("dev.bypixel:LettuceWrapper:VERSION")
}

Replace VERSION with the latest version of LettuceWrapper and Lettuce. 3. Start using LettuceWrapper in your project! For more information, check the docs. Please note that LettuceWrapper includes KotlinX Coroutines and Lettuce, so you don't need to add them as dependencies.