Installation
You can add creative to your project using Gradle
(recommended), Maven or manually downloading the
JAR files from GitHub Releases.
Note that creative and all of its submodules are available in the
Maven Central Repository.
Gradle
dependencies {
implementation("team.unnamed:creative-api:1.7.3")
// Serializer for Minecraft format (ZIP / Folder)
implementation("team.unnamed:creative-serializer-minecraft:1.7.3")
// Resource Pack server
implementation("team.unnamed:creative-server:1.7.3")
}
Maven
<dependency>
<groupId>team.unnamed</groupId>
<artifactId>creative-api</artifactId>
<version>1.7.3</version>
</dependency>