urlencoder/build.gradle.kts
Adam 8fcd629bce
Convert urlencoder lib to Kotlin Multiplatform (#10)
* convert UrlEncoderUtil to be multiplatform compatible

* convert lib tests to KMP

* convert UrlEncoderTest to commonTest (but since there's only a JVM target there's no changes), and also convert mutable test data with read-only types.

* Update copyright

---------

Co-authored-by: Erik C. Thauvin <erik@thauvin.net>
2023-09-05 13:55:29 -07:00

12 lines
221 B
Kotlin

plugins {
buildsrc.conventions.base
id("org.jetbrains.kotlinx.kover")
}
group = "net.thauvin.erik"
version = "1.4.0-SNAPSHOT"
dependencies {
kover(projects.urlencoderLib)
kover(projects.urlencoderApp)
}