A Kotlin serialization utility library.
Add the following dependency to your build.gradle.kts file:
dependencies {
implementation("io.github.karya-inc:serialization-ktx:0.0.3")
}If using Maven, add this to pom.xml:
<dependency>
<groupId>io.github.karya-inc</groupId>
<artifactId>serialization-ktx</artifactId>
<version>0.0.3</version>
</dependency>- Install IntelliJ IDEA
- Install JDK 17+ (Recommended: Latest LTS version)
- Ensure Kotlin plugin is installed in IntelliJ IDEA (comes pre-installed in recent versions)
To get started, clone the repository using the following command:
git clone https://github.com/karya-inc/serialization-ktx.git- Open IntelliJ IDEA.
- Click on File > Open.
- Select the cloned repository folder and open it.
- IntelliJ will automatically detect and configure the project.
To run the tests:
- Open the Run tool window or press
Shift + F10. - Locate the test files inside the
src/test/kotlindirectory. - Right-click on the test file or class and select Run 'Tests in...'.
- Alternatively, you can run all tests using the following Gradle command:
./gradlew testThis project is licensed under the MIT License - see the LICENSE file for details.