OptimumCode / json-schema-validator

The JSON schema validation library that works with https://github.com/Kotlin/kotlinx.serialization

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add module-info.java to JVM artifact

OptimumCode opened this issue · comments

It is required to add the module-info.java file into the JVM artifact in order to correctly work with the Java projects that use Java Platform Module System (JPMS).

module io.github.optimumcode.json {
    requires transitive kotlin.stdlib;
    requires transitive kotlinx.serialization.core;
    requires kotlinx.serialization.json;

    exports io.github.optimumcode.json.pointer;
    exports io.github.optimumcode.json.schema;
}