Skip to content

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


🛠️ Maven Setup

Repository

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

Dependency

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

🛠️ Gradle (Groovy) Setup

Repository

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

Dependency

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

🛠️ Gradle (Kotlin DSL) Setup

Kotlin users — you should know.

Repository

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

Dependency

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

🛠️ SBT Setup

Repository

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

Dependency

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

✅ Best Practices

  • For production projects, avoid using devbuilds or larroxbuilds unless you want the latest development changes.

Clone this wiki locally