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.0.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.0.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.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 stax2-api-3.0.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
XML Parser | woodstox-core-asl 4.0.7 Woodstox is a high-performance XML processor that implements Stax (JSR-173) and SAX2 APIs | 15 |
The following packages are defined in the stax2-api-3.0.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.0.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.1 preferable over vanilla 1.0, since it contains one critical bug fix to implementation auto-detection --> <dependency> <groupId>stax</groupId> <artifactId>stax-api</artifactId> <version>1.0.1</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>