# Getting Started

# Include Elevators in your project

To include Elevators in your project, you need to add the following dependency to your build.gradle.kts or pom.xml file.

# Gradle:

repositories {
    maven("https://repo.keehl.me/snapshots")
}
dependencies {
    compileOnly("me.keehl:elevators-core:5.0.0-beta.11")
}

# Maven:

<repository>
    <id>keehl-releases</id>
    <name>Keehl Repository</name>
    <url>https://repo.keehl.me/snapshots</url>
</repository>
<dependency>
    <groupId>me.keehl</groupId>
    <artifactId>elevators-core</artifactId>
    <version>5.0.0-beta.11</version>
    <scope>provided</scope>
</dependency>

Replace VERSION with the version of Elevators you want to build against.