Data Mapper for Jackson.
Data Mapper package is a high-performance data binding package built on Jackson JSON processor.
Here is the list of declaration for jackson-mapper-asl. 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-mapper-asl</artifactId> <version>1.9.3</version> </dependency>
If you think this Maven repository POM file listing for jackson-mapper-asl 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.txt.
The following table lists the most popular artifacts which are depending on jackson-mapper-asl-1.9.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JEE | twilio-java-sdk 3.3.9 Java helper library for Twilio services | 15 |
Parser | compiler 0.8.4 Implementation of mustache.js for Java | 7 |
XML | jackson-xc 1.9.3 Extensions that provide interoperability support for Jackson JSON processor's data binding functionality. | 7 |
Parser | compiler 0.8.14 Implementation of mustache.js for Java | 18 |
Parser | compiler 0.8.11 Implementation of mustache.js for Java | 6 |
The following packages are defined in the jackson-mapper-asl-1.9.3.jar
org.codehaus.jackson.map org.codehaus.jackson.map.annotate org.codehaus.jackson.map.deser org.codehaus.jackson.map.deser.impl org.codehaus.jackson.map.deser.std org.codehaus.jackson.map.exc org.codehaus.jackson.map.ext org.codehaus.jackson.map.introspect org.codehaus.jackson.map.jsontype org.codehaus.jackson.map.jsontype.impl org.codehaus.jackson.map.module org.codehaus.jackson.map.ser org.codehaus.jackson.map.ser.impl org.codehaus.jackson.map.ser.std org.codehaus.jackson.map.type org.codehaus.jackson.map.util org.codehaus.jackson.node org.codehaus.jackson.schema
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-mapper-asl</artifactId> <packaging>jar</packaging> <name>Data Mapper for Jackson</name> <version>1.9.3</version> <description>Data Mapper package is a high-performance data binding package built on Jackson JSON processor </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 parser/generator jar --> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-core-asl</artifactId> <version>1.9.3</version> </dependency> </dependencies> <!-- Licensing (joy!) --> <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> </licenses> <organization> <name>FasterXML</name> <url>http://fasterxml.com</url> </organization> </project>