jackson-module-jsonSchema.
Add-on module for Jackson (http://jackson.codehaus.org) to support JSON Schema (http://tools.ietf.org/html/draft-zyp-json-schema-03) version 3 generation..
Here is the list of declaration for jackson-module-jsonSchema. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-jsonSchema</artifactId> <version>2.3.3</version> </dependency>
If you think this Maven repository POM file listing for jackson-module-jsonSchema is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The jackson-module-jsonSchema-2.3.3 has 6 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JEE | jackson-annotations 2.3.0 Core annotations used for value types, used by Jackson data binding package. | 22 |
JSON | jackson-core 2.3.3 Core Jackson abstractions, basic JSON streaming API implementation | 19 |
JEE | jackson-databind 2.3.3 General data-binding functionality for Jackson: works on core streaming API | 36 |
JUnit | junit 4.8.2 JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java. | 919 |
Log | slf4j-log4j12 1.6.1 The slf4j log4j-12 binding | 345 |
Log | log4j 1.2.16 Apache Log4j 1.2 | 683 |
The following plugins are used in the jackson-module-jsonSchema-2.3.3.jar
The following packages are defined in the jackson-module-jsonSchema-2.3.3.jar
com.fasterxml.jackson.module.jsonSchema com.fasterxml.jackson.module.jsonSchema.customProperties com.fasterxml.jackson.module.jsonSchema.factories com.fasterxml.jackson.module.jsonSchema.types
Here is the content of the POM file.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.fasterxml</groupId> <artifactId>oss-parent</artifactId> <version>12</version> </parent> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-jsonSchema</artifactId> <name>jackson-module-jsonSchema</name> <version>2.3.3</version> <packaging>bundle</packaging> <description>Add-on module for Jackson (http://jackson.codehaus.org) to support JSON Schema (http://tools.ietf.org/html/draft-zyp-json-schema-03) version 3 generation. </description> <url>https://github.com/FasterXML/jackson-module-jsonSchema</url> <scm> <connection>scm:git:git@github.com:FasterXML/jackson-module-jsonSchema.git</connection> <developerConnection>scm:git:git@github.com:FasterXML/jackson-module-jsonSchema.git</developerConnection> <url>http://github.com/FasterXML/jackson-module-jsonSchema</url> <tag>2.3.3b</tag> </scm> <properties> <!-- this module is 1.6 only --> <javac.src.version>1.6</javac.src.version> <javac.target.version>1.6</javac.target.version> <jackson.annotations.version>2.3.0</jackson.annotations.version> <jackson.core.version>2.3.3</jackson.core.version> <!-- | Configuration properties for the OSGi maven-bundle-plugin --> <osgi.export>${project.groupId}.jsonSchema.*</osgi.export> </properties> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${jackson.annotations.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${jackson.core.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.core.version}</version> </dependency> <!-- and for testing, JUnit is needed --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.6.1</version> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire.version}</version> <configuration> <excludes> <exclude>com/fasterxml/jackson/module/jsonSchema/failing/*.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>