API
This page is for developers who want to build against Reforges from their own plugin. Reforges is open-source, so you can read the code and depend on it directly.
Source code
The source code is on GitHub.
Adding the dependency
Add the Auxilor repository to your
build.gradle.kts.Add Reforges as a
compileOnlydependency.
repositories {
maven("https://repo.auxilor.io/repository/maven-public/")
}
dependencies {
compileOnly("com.willfp:Reforges:<version>")
}
The latest version available on the repo can be found here.
Where to go next
Shared APIs: most cross-plugin APIs live in the eco framework.
Config side: to define reforges in config instead of code, see How to Make a Reforge.