jsonschema2pojo-ant

Generate DTO style Java classes from JSON Schema documents

Лицензия

Лицензия

Категории

Категории

Ant Компиляция и сборка JSON Данные
Группа

Группа

com.github.blindpirate
Идентификатор

Идентификатор

jsonschema2pojo-ant
Последняя версия

Последняя версия

1.1.0.4
Дата

Дата

Тип

Тип

jar
Описание

Описание

jsonschema2pojo-ant
Generate DTO style Java classes from JSON Schema documents

Скачать jsonschema2pojo-ant

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.blindpirate/jsonschema2pojo-ant/ -->
<dependency>
    <groupId>com.github.blindpirate</groupId>
    <artifactId>jsonschema2pojo-ant</artifactId>
    <version>1.1.0.4</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.blindpirate/jsonschema2pojo-ant/
implementation 'com.github.blindpirate:jsonschema2pojo-ant:1.1.0.4'
// https://jarcasting.com/artifacts/com.github.blindpirate/jsonschema2pojo-ant/
implementation ("com.github.blindpirate:jsonschema2pojo-ant:1.1.0.4")
'com.github.blindpirate:jsonschema2pojo-ant:jar:1.1.0.4'
<dependency org="com.github.blindpirate" name="jsonschema2pojo-ant" rev="1.1.0.4">
  <artifact name="jsonschema2pojo-ant" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.blindpirate', module='jsonschema2pojo-ant', version='1.1.0.4')
)
libraryDependencies += "com.github.blindpirate" % "jsonschema2pojo-ant" % "1.1.0.4"
[com.github.blindpirate/jsonschema2pojo-ant "1.1.0.4"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
com.github.blindpirate : jsonschema2pojo-core jar 1.1.0.4
org.apache.ant : ant jar 1.10.9
com.google.code.findbugs : annotations jar 1.3.9

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
1.1.0.4
1.1.0.3
1.1.0.2