Minecraft utilities, also a library for AH's mods.
WARNING: This mod has been deprecated, use ArnicaLib instead!
There are two ways to use this mod in your workspace:
Add the following to your build.gradle
:
repositories {
maven {
url "https://maven.pkg.github.com/auioc/ahutils-mod"
credentials {
username = "<GITHUB_USERNAME>"
password = "<GITHUB_TOKEN>"
}
}
}
dependencies {
compileOnly "org.auioc.mods.ahutils:ahutils-<MINECRAFT_VERSION>:<AHUTILS_VERSION>:forgelib"
runtimeOnly "org.auioc.mods.ahutils:ahutils-<MINECRAFT_VERSION>:<AHUTILS_VERSION>:deobf"
}
- Mod version can be found in the Packages of this repository.
- You must provide a valid GitHub username and token to access the GitHub Packages.
- See official documentation for more information.
If you do not want to or can not use the GitHub Packages:
-
Download the mod jar and forgelib jar of the version you want from Releases, then put them into
libs
folder. -
Add the following to your
build.gradle
:dependencies { compileOnly files("libs/ahutils-<VERSION>-forgelib.jar") runtimeOnly files("libs/ahutils-<VERSION>-deobf.jar") }
Any type of contribution is welcome, here are some examples of how you may contribute to this project:
- Submit issues to report bugs or ask questions.
- Propose pull requests to improve our code.
AHUtils is licensed under the GNU General Public License v3.0. Full license is in LICENSE file.