-
Notifications
You must be signed in to change notification settings - Fork 0
Home
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.
- β‘ ConfigManager β Manage multiple
.ymlfiles with ease. - π§ TaskUtil β Run tasks instantly, delayed, or repeating on the main thread.
- π HashMapUtil β Create
Mapobjects in a clean, readable way. - β BooleanManager β Check build states (Dev, Release, LarroxDev).
- π§° Many more helper utilities designed to make development faster.
Note
Always replace VERSION with the latest release!
You can find the current version here: Larrox Repo Releases
<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>maven {
name "larroxutilsReleases"
url "https://repo.larrox.dev/releases"
}
implementation("dev.larrox:LarroxUtilsAPI:VERSION")maven {
name = "larroxutilsReleases"
url = uri("https://repo.larrox.dev/releases")
}
implementation("dev.larrox:LarroxUtilsAPI:VERSION")resolvers +=
"larroxutils-releases" at "https://repo.larrox.dev/releases"
"dev.larrox" %% "LarroxUtilsAPI" %% "VERSION"Explore the documentation for each utility:
Contributions are welcome! π
- Report issues
- Suggest new utilities
- Open pull requests
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)?