* 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>
12 lines
221 B
Kotlin
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)
|
|
}
|