Skip to content
This repository was archived by the owner on Sep 8, 2024. It is now read-only.

Getting Started

Gabriel edited this page Mar 5, 2023 · 17 revisions

To add deck to your project you need to have the maven central repository registered, and then implement deck in your dependencies scope:

Maven

<dependencies>
    <dependency>
        <groupId>io.github.srgaabriel.deck</groupId>
        <artifactId>deck-core</artifactId>
        <version>{VERSION_HERE}</version>
    </dependency>
</dependencies>

Gradle (Groovy)

dependencies {
    implementation 'io.github.srgaabriel.deck:deck-core:{VERSION_HERE}'
}

Gradle (Kotlin DSL)

dependencies {
    implementation("io.github.srgaabriel.deck:deck-core:${VERSION_HERE}")
}

You can replace {VERSION_HERE) with the latest version GitHub release (latest by date) , or the module with another one of your choice (see Modules).

Clone this wiki locally