--- # Installation ## Maven URL ### GitHub `build.gradle` ```gradle repositories { maven { url = "https://jitpack.io" } } dependencies { implementation "com.github.ProstStuff:Utilitary:" } ``` Replace `` with a valid version tag that is obtained from [Utilitary GitHub Release Tag](https://github.com/ProstStuff/Utilitary/tags) ### Modrinth ```gradle repositories { maven { url = "https://api.modrinth.com/maven" } } dependencies { implementation "maven.modrinth:utilitary:" } ``` Replace `` with a valid version from [Utilitary Modrinth Versions](https://modrinth.com/mod/utilitary/versions) ## Local Download Download Jar file from [Utilitary GitHub Release](https://github.com/ProstStuff/Utilitary/releases) and store it somewhere accessible in your project `build.gradle` ```gradle dependencies { implementation files("utilitary-.jar") } ``` Let's say you store Utilitary in `libs/utilitary-1.0.0.jar` ```gradle dependencies { implementation files("libs/utilitary-1.0.0.jar") } ``` Resync your Gradle project to properly load Utilitary or reopen your project. It's properly loaded if you can see the files of the .jar file. > [!TIP] > It's recommended to also add explicit dependency in your mod `fabric.mod.json`. This way your mod is guaranteed to load with Utilitary loaded. --- # Next Step - [Setting up config]()