Skip to content
Tatu Saloranta edited this page Sep 26, 2019 · 27 revisions

Jackson Module: JSON Schema (generator)

License

Project is licensed under Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt)

Documentation

Javadocs for 2.x:

Download

Stable versions for 2.x

Note: See the Maven Repo for a complete list of available versions.

Build Script Dependency

Note: Older documents may indicate the wrong artifact location of com.fasterxml.jackson.databind. It is now under com.fasterxml.jackson.module.

Releases

Maven:

<dependency>
    <groupId>com.fasterxml.jackson.module</groupId>
    <artifactId>jackson-module-jsonSchema</artifactId>
    <version>2.7.4</version>
</dependency>

Gradle:

compile group: 'com.fasterxml.jackson.module', name: 'jackson-module-jsonSchema', version: '2.9.10'

Snapshots

Note: Snapshots are pushed to the Sonatype Maven Snapshot repository.

Maven:

<snapshotRepository>
    <id>sonatype-nexus-snapshots</id>
    <name>Sonatype Nexus Snapshots</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>

<dependency>
    <groupId>com.fasterxml.jackson.module</groupId>
    <artifactId>jackson-module-jsonSchema</artifactId>
    <version>2.7.4-SNAPSHOT</version>
</dependency>

Gradle:

repositories {
    maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}

compile group: 'com.fasterxml.jackson.module', name: 'jackson-module-jsonSchema', version: '2.10.0-SNAPSHOT'
Clone this wiki locally