Skip to content

chrisbarbour/json-sckema

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JSON SCKEMA

Generation of kotlin data classes from Json-schema

Get Started

Using Maven

Using Maven you can generate kotlin data classes using the maven-exec-plugin. The following is an example of how you can generate classes from definitions within a swagger definition file.

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.4.0</version>
    <executions>
        <execution>
            <phase>generate-sources</phase>
            <goals>
                <goal>java</goal>
            </goals>
            <configuration>
                <mainClass>sckema.SchemaMapperKt</mainClass>
                <arguments>
                    <argument>${project.build.directory}/generated-sources/</argument>
                    <argument>product</argument>
                    <argument>yaml</argument>
                    <argument>${project.basedir}/src/main/resources/swagger.yml</argument>
                </arguments>
            </configuration>
        </execution>
    </executions>
</plugin>

About

JSON Schema -> Kotlin Data classes with validation

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages