Skip to content

Introduction to the API

The Homestead API provides easy access for developers to manage regions, chunks, members, flags, and everything related to the plugin.

You can develop a third-party plugin to implement more features using the API!

Installation

<repository>
    <id>homestead-github</id>
    <url>https://maven.pkg.github.com/TayebYassine/Homestead</url>
</repository>

<dependency>
    <groupId>tfagaming.projects.minecraft.homestead</groupId>
    <artifactId>homestead</artifactId>
    <version>4.3.1</version>
    <classifier>api</classifier>
    <scope>provided</scope>
</dependency>
repositories {
    maven("https://maven.pkg.github.com/TayebYassine/Homestead")
}

dependencies {
    compileOnly("tfagaming.projects.minecraft.homestead:homestead:4.3.1:api")
}

All versions are available in GitHub Packages.