Skip to content
Larrox edited this page Aug 29, 2025 · 7 revisions

Welcome to the official Wiki of LarroxUtilsAPI β€” a modern utility library for Spigot/Bukkit plugin developers.
This API provides ready-to-use utilities that simplify common plugin development tasks, saving you time and boilerplate code.


πŸš€ Features at a Glance

  • ⚑ ConfigManager – Manage multiple .yml files with ease.
  • πŸ”§ TaskUtil – Run tasks instantly, delayed, or repeating on the main thread.
  • πŸ“‹ HashMapUtil – Create Map objects in a clean, readable way.
  • βœ… BooleanManager – Check build states (Dev, Release, LarroxDev).
  • 🧰 Many more helper utilities designed to make development faster.

πŸ“₯ Installation

Note

Always replace VERSION with the latest release!
You can find the current version here: Larrox Repo Releases

Maven

<repository>
  <id>larroxutils-releases</id>
  <name>LarroxUtilsAPI</name>
  <url>https://repo.larrox.dev/releases</url>
</repository>

<dependency>
  <groupId>dev.larrox</groupId>
  <artifactId>LarroxUtilsAPI</artifactId>
  <version>VERSION</version>
</dependency>

Gradle (Groovy)

maven {
    name "larroxutilsReleases"
    url "https://repo.larrox.dev/releases"
}

implementation("dev.larrox:LarroxUtilsAPI:VERSION")

Gradle (Kotlin DSL)

maven {
    name = "larroxutilsReleases"
    url = uri("https://repo.larrox.dev/releases")
}

implementation("dev.larrox:LarroxUtilsAPI:VERSION")

SBT

resolvers +=
  "larroxutils-releases" at "https://repo.larrox.dev/releases"

"dev.larrox" %% "LarroxUtilsAPI" %% "VERSION"

πŸ“š Documentation

Explore the documentation for each utility:


🀝 Contribution

Contributions are welcome! πŸŽ‰

  • Report issues
  • Suggest new utilities
  • Open pull requests

πŸ“œ License

LarroxUtilsAPI is licensed under the MIT License.


Would you like me to make the homepage more **developer-friendly** (shorter + quickstart code snippet) or more like a **product landing page** (emojis, feature highlights, links)?

Clone this wiki locally