Jettison.
A StAX implementation for JSON..
Here is the list of declaration for jettison. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.codehaus.jettison</groupId> <artifactId>jettison</artifactId> <version>1.3.1</version> </dependency>
If you think this Maven repository POM file listing for jettison is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The jettison-1.3.1 has 3 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 |
---|---|---|
JUnit | junit 3.8.1 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1966 |
XML Parser | stax-api 1.0.1 StAX API is the standard java XML processing API defined by JSR-173 | 254 |
The following table lists the most popular artifacts which are depending on jettison-1.3.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Web Service | cxf-bundle 2.5.2 Apache CXF Bundle Jar | 5 |
The following plugins are used in the jettison-1.3.1.jar
The following packages are defined in the jettison-1.3.1.jar
org.codehaus.jettison org.codehaus.jettison.badgerfish org.codehaus.jettison.json org.codehaus.jettison.mapped org.codehaus.jettison.util
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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.codehaus.jettison</groupId> <artifactId>jettison</artifactId> <version>1.3.1</version> <packaging>bundle</packaging> <name>Jettison</name> <description>A StAX implementation for JSON.</description> <parent> <groupId>org.codehaus</groupId> <artifactId>codehaus-parent</artifactId> <version>3</version> </parent> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>stax</groupId> <artifactId>stax-api</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>woodstox</groupId> <artifactId>wstx-asl</artifactId> <version>3.2.2</version> <scope>test</scope> </dependency> </dependencies> <scm> <connection>scm:svn:http://svn.codehaus.org/jettison/tags/jettison-1.3.1</connection> <developerConnection>scm:svn:https://svn.codehaus.org/jettison/tags/jettison-1.3.1</developerConnection> <url>scm:svn:https://svn.codehaus.org/jettison/tags/jettison-1.3.1</url> </scm> <build> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav</artifactId> <version>1.0-beta-2</version> </extension> </extensions> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> <optimize>true</optimize> <debug>true</debug> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <tagBase>https://svn.codehaus.org/jettison/tags/</tagBase> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <version>1.0.0</version> <configuration> <instructions> <Bundle-Name>${artifactId}</Bundle-Name> <Bundle-SymbolicName>${groupId}.${artifactId}</Bundle-SymbolicName> <Export-Package>org.codehaus.jettison*;version=${project.version}</Export-Package> <Import-Package>*</Import-Package> <Private-Package>!*</Private-Package> <Implementation-Title>${project.name}</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> </instructions> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkMode>pertest</forkMode> </configuration> </plugin> </plugins> </reporting> <!-- <distributionManagement> <repository> <id>codehaus.org</id> <name>jettison Central Repository</name> <url>dav:https://dav.codehaus.org/repository/jettison/</url> </repository> <snapshotRepository> <id>codehaus.org</id> <name>jettison Central Development Repository</name> <url>dav:https://dav.codehaus.org/snapshots.repository/jettison/</url> </snapshotRepository> <site> <id>codehaus.org</id> <url>dav:https://dav.codehaus.org/jettison/</url> </site> </distributionManagement> --> </project>