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 cachefileprovider = "<LATEST-VERSION>"

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

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

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

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

And then use the definitions in your projects like following:

build.gradle.kts
implementation(libs.cachefileprovider)