Skip to content

Getting Started

To begin, you need to add Nucleoid's maven to your build file.

build.gradle
1
2
3
4
5
6
7
repositories {
    // There might be other repos there too, just add it at the end
    maven { 
        url "https://maven.nucleoid.xyz/"
        name "Nucleoid"
    }
}
build.gradle.kts
1
2
3
4
repositories {
    // There might be other repos there too, just add it at the end
    maven("https://maven.nucleoid.xyz/") { name = "Nucleoid" }
}

Then you just declare it as dependency!

Info

Latest Version

You just need to replace [VERSION] with version you want to use (which should be usually the latest available). For list of version names, you can check maven

build.gradle
1
2
3
4
5
dependencies {
    // You will have other dependencies here too

    modImplementation include("eu.pb4:placeholder-api:[VERSION]")
}
build.gradle.kts
1
2
3
4
5
dependencies {
    // You will have other dependencies here too

    modImplementation(include("eu.pb4:placeholder-api:[VERSION]"))
}

This will also include it in yours mods, so users won't need to download it separately.

You just need to replace [VERSION] with the version you want to use (which should be usually the latest available). For list of version names, you can check Maven Repository