Getting Started
This guide is not beginner-friendly! Making Nova addons requires a lot of knowledge about Kotlin, the Spigot API, Maven and Gradle.
Prerequisites
IntelliJ
Even though Eclipse does have Kotlin support via a plugin, it's not the best option. We recommend using IntelliJ to make addons.
GitHub
This guide uses a GitHub repo template so having a GitHub account is recommended. You can also install GitHub Desktop if you don't want to use git commands.
Codestyle
You can find the xenondevs codestyle here. To apply it, open your Intellij settings and import the codestyle.xml file here:
Setting up your project
You can now create a new repo using our addon template here. After creating the new repo and cloning it, make sure to edit the following files:
src/main/kotlin
Change the package name to your own.
settings.gradle.kts
Change rootProject.name
to your addon id.
build.gradle.kts
Change group
to your group.
Change version
to your version.
In the addon
task, set main
to your addon main class.
Adding dependencies
If your addon requires dependencies that need to be present at runtime, add them under the nova
configuration:
Building
To build, run
Or if you're on a mojang-mapped server, runEnabling dev mode
To enable dev mode, add the NovaDev
argument using -DNovaDev
.
This allows you to bypass some restrictions, like the reload prevention, joining the server during startup, or using addons that require a different version of Nova.
KDoc
The generated KDoc for Nova can be found on here.