Skip to main content

Simple Compile Ready

This example project configuration is a simple project configuration that is ready to be compiled. It is the most basic project configuration that you can have.

build.gradle
tableau {
mod {
// Mod information
modid = 'modid' // Use your own modid here.
group = 'com.example' // Use your own group here.
minecraftVersion = '1.21.3' // Or any other minecraft version.
publisher = 'SomePublisher' // Use your own name here.
url = 'https://github.com/someorg/modid' // Use your own URL here.
}
}
note

You can find a full example of this project configuration in the Basic Example on GitHub.