Minecraft multiversion plugin, with full mod project management, built on Stonecutter
To get started, you should refer to the TxniTemplate documentation, a barebones template mod that utilizes blahaj
.
In short, you will need to set up your project with Stonecutter, reference and then apply the plugin, and initialize it with a BlahajSettings object. This interface is intended to provide a single configuration location for 99% of Gradle setup during mod development.
plugins {
id("toni.blahaj") version "1.0.4"
}
val templateSettings = object : BlahajSettings { ... }
blahaj {
sc = stonecutter
settings = templateSettings
init()
}
// Dependencies
repositories {
maven("https://maven.txni.dev/releases")
}