JAX-RS provider for JSON content type.
Jax-RS provider for JSON content type, based on Jackson JSON processor's data binding functionality..
Here is the list of declaration for jackson-jaxrs. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-jaxrs</artifactId> <version>1.9.2</version> </dependency>
If you think this Maven repository POM file listing for jackson-jaxrs is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txtName:GNU Lesser General Public License (LGPL), Version 2.1
URL: http://www.fsf.org/licensing/licenses/lgpl.txt.
The jackson-jaxrs-1.9.2 has 2 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 |
---|---|---|
JSON | jackson-core-asl 1.9.2 Jackson is a high-performance JSON processor (parser, generator) | 164 |
JSON | jackson-mapper-asl 1.9.2 Data Mapper package is a high-performance data binding package built on Jackson JSON processor | 196 |
The following packages are defined in the jackson-jaxrs-1.9.2.jar
org.codehaus.jackson.jaxrs
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project> <!-- General information --> <modelVersion>4.0.0</modelVersion> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-jaxrs</artifactId> <packaging>jar</packaging> <name>JAX-RS provider for JSON content type</name> <version>1.9.2</version> <description>Jax-RS provider for JSON content type, based on Jackson JSON processor's data binding functionality. </description> <!-- Contact information --> <url>http://jackson.codehaus.org</url> <issueManagement> <url>http://jira.codehaus.org/browse/JACKSON</url> </issueManagement> <!-- Dependency information --> <dependencies> <!-- need the core Jackson core and mapper jars --> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-core-asl</artifactId> <version>1.9.2</version> </dependency> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> <version>1.9.2</version> </dependency> </dependencies> <!-- Licensing: ASL or GPL --> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> <license> <name>GNU Lesser General Public License (LGPL), Version 2.1</name> <url>http://www.fsf.org/licensing/licenses/lgpl.txt</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>FasterXML</name> <url>http://fasterxml.com</url> </organization> </project>