-
Notifications
You must be signed in to change notification settings - Fork 0
Repository & Dependency Setup
Larrox edited this page Aug 29, 2025
·
1 revision
To use LarroxUtilsAPI in your project, you need to add the repository and dependency to your build tool configuration.
Note
REPLACE VERSION WITH THE ACTUAL RELEASE VERSION!
You can find the latest 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")Kotlin users — you should know.
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"- For production projects, avoid using devbuilds or larroxbuilds unless you want the latest development changes.