There are two ways to use this mod in your workspace:
Add the following to your build.gradle
:
Add any of the following maven repository to the repositories
section:
-
GitHub Packages
maven { url 'https://maven.pkg.github.com/auioc/arnicalib-mcmod' credentials { username = "<GITHUB_USERNAME>" password = "<GITHUB_TOKEN>" } }
Notice: You must provide a valid GitHub username and token to access the GitHub Packages. See official documentation for more information.
-
AUIOC Maven Repository
maven { url 'https://repo.auioc.com/maven/releases' content { includeGroup 'org.auioc.mcmod' } }
Add the following to the dependencies
section:
implementation "org.auioc.mcmod:arnicalib:<MINECRAFT_VERSION>-<ARNICALIB_VERSION>"
If you do not want to or can not use the maven repository:
-
Download the jar file of the version you want from Releases, then put them into
libs
folder. -
Add the following to the
dependencies
section in yourbuild.gradle
:implementation files("libs/arnicalib-<VERSION>.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.
ArnicaLib is licensed under the GNU General Public License v3.0. The full license is in the LICENSE file.