Setup
Create a fabric mod using this repo as an example.
Add this mod as a dependency via GitHub Packages. GitHub's Packages requires authentication. Here is their guide. Use the release tag as the version.
repositories {
maven("https://maven.pkg.github.com/Redstonecrafter0/Amber") {
credentials {
username = "yourUsername"
password = "yourGitHubToken"
}
}
}
dependencies {
modImplementation("net.redstonecraft:amber:${version}") {
exclude("org.lwjgl")
}
}
Documentation
The documentation can be found here.
Code Scanning
The latest Qodana report can be found here.