Skip to content

Installation

To use Nova in your project, start by adding the plugin under the plugins block in your build.gradle file:

Groovy
id 'com.undefinedcreations.nova' version 'LATEST-VERSION'

TIP

If you are using Echo and BuildTools is enable with a valid minecraftVersion, Nova will automatically grad that version select. This means you won't need to set the version again here.

To begin setting up Nova, set the minecraftVersion by modifying the runServer task configurations under the tasks block in your build.gradle:

Groovy
tasks {
    runServer {
        minecraftVersion("1.21.4")
    }
}

The minecraftVersion, as the name suggests, determines what Minecraft version the server will run.

Released under the MIT License.