jsonschema2pojo-maven-plugin

Generate DTO style Java classes from JSON Schema documents

License

License

Categories

Categories

Maven Build Tools JSON Data
GroupId

GroupId

com.github.blindpirate
ArtifactId

ArtifactId

jsonschema2pojo-maven-plugin
Last Version

Last Version

1.1.0.4
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

jsonschema2pojo-maven-plugin
Generate DTO style Java classes from JSON Schema documents
Project URL

Project URL

https://github.com/joelittlejohn/jsonschema2pojo

Download jsonschema2pojo-maven-plugin

How to add to project

<plugin>
    <groupId>com.github.blindpirate</groupId>
    <artifactId>jsonschema2pojo-maven-plugin</artifactId>
    <version>1.1.0.4</version>
</plugin>

Dependencies

compile (5)

Group / Artifact Type Version
com.github.blindpirate : jsonschema2pojo-core jar 1.1.0.4
org.apache.maven : maven-plugin-api jar 2.2.1
org.apache.maven : maven-project jar 2.2.1
org.apache.maven.shared : maven-shared-utils jar 0.6
com.google.code.findbugs : annotations jar 1.3.9

Project Modules

There are no modules declared in this project.

jsonschema2pojo Build Status Maven Central

jsonschema2pojo generates Java types from JSON Schema (or example JSON) and can annotate those types for data-binding with Jackson 2.x or Gson.

Try jsonschema2pojo online
or brew install jsonschema2pojo

You can use jsonschema2pojo as a Maven plugin, an Ant task, a command line utility, a Gradle plugin or embedded within your own Java app. The Getting Started guide will show you how.

A very simple Maven example:

<plugin>
    <groupId>org.jsonschema2pojo</groupId>
    <artifactId>jsonschema2pojo-maven-plugin</artifactId>
    <version>1.1.1</version>
    <configuration>
        <sourceDirectory>${basedir}/src/main/resources/schema</sourceDirectory>
        <targetPackage>com.example.types</targetPackage>
    </configuration>
    <executions>
        <execution>
            <goals>
                <goal>generate</goal>
            </goals>
        </execution>
    </executions>
</plugin>

Useful pages:

Project resources:

Licensed under the Apache License, Version 2.0.

YourKit

Special thanks to YourKit, who support this project through a free license for their full-featured YourKit Java Profiler.

Versions

Version
1.1.0.4
1.1.0.3
1.1.0.2