Skip to content

Installation

Klopik is hosted in my own Maven repository, so before using it in your project you must add the repository https://maven.vinicius.io to your settings.gradle.kts file:

settings.gradle.kts
1
2
3
4
5
6
7
dependencyResolutionManagement {
    repositories {
        google()
        mavenCentral()
        maven("https://maven.vinicius.io")
    }
}

With the repository added, you just need to include the dependency in the file build.gradle.kts:

build.gradle.kts
1
2
3
dependencies {
    implementation("io.vinicius.klopik:klopik:24.5.1")
}