Setup

This library is distributed via maven central.

Add dependencies like following to use this library inside your project.

Simply add the dependencies inside your build.gradle.kts file.

build.gradle.kts
val kotbilling = "<LATEST-VERSION>"

implementation("io.github.mflisar.kotbilling:library:$kotbilling")

Define the dependencies inside your libs.versions.toml file.

libs.versions.toml
[versions]
kotbilling = "<LATEST-VERSION>"

[libraries]
kotbilling = { module = "io.github.mflisar.kotbilling:library", version.ref = "kotbilling" }

And then use the definitions in your projects like following:

build.gradle.kts
implementation(libs.kotbilling)