Getting Started

Get started using the zHomes API.

Declare zHomes dependency in your build files

The dependency is published on Maven Central, 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")
}

Last updated

Was this helpful?