1

Step 1

Add the version in your /gradle/libs.versions.toml file under versions
libs.versions.toml
[versions]
halo = "latest_version"
2

Step 2

Add the library in your /gradle/libs.versions.toml file under libraries
libs.versions.toml
[libraries]
halo = { group = "org.bizilabs.halo", name="halo", version.ref = "halo" }
halo-charts = { group = "org.bizilabs.halo", name="charts", version.ref = "halo" }
3

Step 3

Add the library to the dependencies block of your build.gradle.kts file in your commonMain source set.
build.gradle.kts
commonMain.dependencies {
    implementation(libs.halo)
    implementation(libs.halo.charts)
}
4

Step 4

Sync project to continue