LogoLogo
  • Welcome
  • zAPI
    • Usage
      • Getting Started
      • JavaDocs
  • zHomes
    • Commands & Permissions
    • Hooks
      • PlaceholderAPI
      • WorldGuard
      • Vault
    • Plugin Files
      • config.yml
      • menus/
        • menu-homes.yml
      • languages/
        • de.yml
        • en.yml
        • es.yml
        • fr.yml
        • it.yml
        • nl.yml
        • pl.yml
        • pt-br.yml
        • ru.yml
    • Developer API
      • Getting Started
      • Events
      • JavaDocs
Powered by GitBook

Copyright @ 2025 yLeoft

On this page
  • Declare zHomes dependency in your build files
  • Maven
  • Gradle

Was this helpful?

Export as PDF
  1. zHomes
  2. Developer API

Getting Started

Get started using the zHomes API.

PreviousDeveloper APINextEvents

Last updated 4 days ago

Was this helpful?

Declare zHomes dependency in your build files

The dependency is published on , meaning you don't need to parse the repository.

Maven

<dependencies>
    <dependency>
        <groupId>me.yleoft</groupId>
        <artifactId>zHomes</artifactId>
        <version>2.0.3</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

Gradle

dependencies {
    compileOnly("me.yleoft:zHomes:2.0.3")
}
Maven Central