-
Notifications
You must be signed in to change notification settings - Fork 136
Home
techbrew-mc edited this page Jun 16, 2016
·
27 revisions
Project is licensed under Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt)
- 2.8 (Not published; build from source)
- 2.7 (Not published; build from source)
- 2.6
- 2.5
- 2.4
- 2.3
- 2.2
- 2.1
Note: See the Maven Repo for a complete list of available versions.
- 2.8.0rc1 (07-Jun-2016) Release Candidate
- 2.7.4 (29-Apr-2016)
- 2.6.7 (05-Jun-2016)
- 2.5.5 (07-Dec-2015)
- 2.4.6 (23-Apr-2015)
- 2.3.5 (14-Jan-2015)
- 2.2.3 (24-Aug-2013)
- 2.1.5 (03-May-2013)
Note: Older documents may indicate the wrong artifact location of . It is now under com.fasterxml.jackson.databind
com.fasterxml.jackson.module
.
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.7.4'
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.7.4-SNAPSHOT'