Skip to content

Latest commit

 

History

History
98 lines (66 loc) · 3.23 KB

README.md

File metadata and controls

98 lines (66 loc) · 3.23 KB

ArnicaLib

Shared library for Minecraft mods.

GitHub license GitHub release GitHub Workflow Status
Minecraft NeoForge Mappings

For Developers

There are two ways to use this mod in your workspace:

Maven (Recommended)

Add the following to your build.gradle:

Repositories

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' }
    }

Dependencies

Add the following to the dependencies section:

implementation "org.auioc.mcmod:arnicalib:<MINECRAFT_VERSION>-<ARNICALIB_VERSION>"

Local JAR File

If you do not want to or can not use the maven repository:

  1. Download the jar file of the version you want from Releases, then put them into libs folder.

  2. Add the following to the dependencies section in your build.gradle:

    implementation files("libs/arnicalib-<VERSION>.jar")

Maintainers

Credits

Contributing

Any type of contribution is welcome, here are some examples of how you may contribute to this project:

License

ArnicaLib is licensed under the GNU General Public License v3.0. The full license is in the LICENSE file.