Stax2 API.
Stax2 API is an extension to basic Stax 1.0 API that adds significant new functionality, such as full-featured bi-direction validation interface and high-performance Typed Access API..
Here is the list of declaration for stax2-api. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.codehaus.woodstox</groupId> <artifactId>stax2-api</artifactId> <version>3.1.1</version> </dependency>
If you think this Maven repository POM file listing for stax2-api is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The BSD License
URL: http://www.opensource.org/licenses/bsd-license.php.
The stax2-api-3.1.1 has 1 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 |
---|---|---|
XML Parser | stax-api 1.0-2 StAX is a standard XML processing API that allows you to stream XML data from and to your application. | 219 |
The following table lists the most popular artifacts which are depending on stax2-api-3.1.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Web Service | cxf-bundle-jaxrs 2.7.7 Apache CXF JAX-RS Bundle Jar | 5 |
Development | osmosis-core 0.43.1 Osmosis is a Java application and library for processing OSM data. | 7 |
Web Service | cxf-bundle 2.5.2 Apache CXF Bundle Jar | 5 |
XML Parser | woodstox-core-asl 4.1.1 Woodstox is a high-performance XML processor that implements Stax (JSR-173) and SAX2 APIs | 28 |
XML Parser | woodstox-core-asl 4.2.0 Woodstox is a high-performance XML processor that implements Stax (JSR-173) and SAX2 APIs | 20 |
Development | osmosis-core 0.43-RELEASE Osmosis is a Java application and library for processing OSM data. | 8 |
XML Parser | woodstox-core-asl 4.1.4 Woodstox is a high-performance XML processor that implements Stax (JSR-173) and SAX2 APIs | 5 |
XML Parser | woodstox-core-asl 4.1.2 Woodstox is a high-performance XML processor that implements Stax (JSR-173) and SAX2 APIs | 39 |
XML Parser | jackson-dataformat-xml 2.1.0 Data format extension for Jackson (http://jackson.codehaus.org) to offer alternative support for serializing POJOs as XML and deserializing XML as pojos. Support implemented on top of Stax API (javax.xml.stream), by implementing core Jackson Streaming API types like JsonGenerator, JsonParser and Js... | 6 |
The following packages are defined in the stax2-api-3.1.1.jar
org.codehaus.stax2 org.codehaus.stax2.evt org.codehaus.stax2.io org.codehaus.stax2.osgi org.codehaus.stax2.ri org.codehaus.stax2.ri.dom org.codehaus.stax2.ri.evt org.codehaus.stax2.ri.typed org.codehaus.stax2.typed org.codehaus.stax2.util org.codehaus.stax2.validation
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.woodstox</groupId> <artifactId>stax2-api</artifactId> <packaging>jar</packaging> <name>Stax2 API</name> <version>3.1.1</version> <description>Stax2 API is an extension to basic Stax 1.0 API that adds significant new functionality, such as full-featured bi-direction validation interface and high-performance Typed Access API. </description> <!-- Contact information --> <!-- In future, should there be separate Stax2 home page? --> <url>http://woodstox.codehaus.org/StAX2</url> <issueManagement> <url>http://jira.codehaus.org/browse/WSTX</url> </issueManagement> <!-- Dependency information --> <dependencies> <!-- Stax API jar is needed; 1.0-2 seems to be the last "official" version prior to JDK 6 that bundles API --> <dependency> <groupId>javax.xml.stream</groupId> <artifactId>stax-api</artifactId> <version>1.0-2</version> </dependency> </dependencies> <!-- Licensing --> <licenses> <license> <name>The BSD License</name> <url>http://www.opensource.org/licenses/bsd-license.php</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>Codehaus</name> <url>http://www.codehaus.org/</url> </organization> </project>