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>
This commit is contained in:
Adam 2023-09-05 22:55:29 +02:00 committed by GitHub
parent ae060f5bd2
commit 8fcd629bce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 196 additions and 206 deletions

View file

@ -62,7 +62,7 @@ repositories {
}
dependencies {
implementation("net.thauvin.erik:urlencoder-lib:1.3.0")
implementation("net.thauvin.erik:urlencoder-lib-jvm:1.4.0")
}
```
@ -73,7 +73,7 @@ to the artifact URL.
<dependency>
<groupId>net.thauvin.erik</groupId>
<artifactId>urlencoder-lib-jvm</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>
</dependency>
```