Woodstox.
Woodstox is a high-performance XML processor that implements Stax (JSR-173) API.
Here is the list of declaration for wstx-asl. 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>wstx-asl</artifactId> <version>3.2.2</version> </dependency>
If you think this Maven repository POM file listing for wstx-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 wstx-asl-3.2.2 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 wstx-asl-3.2.2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
XML Parser | mule-transport-xfire 2.0.0-RC2 A Mule transport for SOAP connectivity using XFire, a STaX-based SOAP stack. | 5 |
Security | fabric3-spi 0.6 Fabric3 SPIs for fabric extensions. | 31 |
Security | sca4j-spi 0.4.2 SCA4J SPIs for fabric extensions. | 15 |
XML | mule-module-xml 2.0.0 Functionality for working with XML | 5 |
Security | fabric3-spi 1.1 Fabric3 SPIs for fabric extensions. | 32 |
XML | mule-module-xml 2.0.0-RC2 Functionality for working with XML | 7 |
Security | fabric3-spi 0.6.5 Fabric3 SPIs for fabric extensions. | 27 |
Security | fabric3-spi 1.0 Fabric3 SPIs for fabric extensions. | 30 |
Security | fabric3-spi 0.5ALPHA2 Fabric3 SPIs for fabric extensions. | 20 |
XML | fabric3-loader 0.5BETA1 Fabric3 loader for SCDL XML files. | 5 |
XML Parser | mule-transport-xfire 2.0.0-RC1 A Mule transport for SOAP connectivity using XFire, a STaX-based SOAP stack. | 6 |
Security | sca4j-spi 0.9.0 SCA4J SPIs for fabric extensions. | 9 |
Security | fabric3-spi 0.5.1 Fabric3 SPIs for fabric extensions. | 31 |
XML | mule-module-xml 2.0.0-M2 Functionality for working with XML | 5 |
Security | fabric3-spi 0.7 Fabric3 SPIs for fabric extensions. | 32 |
Security | fabric3-spi 0.3.1 Fabric3 SPIs for fabric extensions. | 10 |
XML | mule-module-xml 2.0.1 Functionality for working with XML | 6 |
Security | fabric3-spi 0.5 Fabric3 SPIs for fabric extensions. | 22 |
XML | mule-module-xml 2.0.0-RC3 Functionality for working with XML | 5 |
XML | fabric3-loader 0.5.1 Fabric3 loader for SCDL XML files. | 5 |
The following packages are defined in the wstx-asl-3.2.2.jar
com.ctc.wstx.api com.ctc.wstx.cfg com.ctc.wstx.compat com.ctc.wstx.dom com.ctc.wstx.dtd com.ctc.wstx.ent com.ctc.wstx.evt com.ctc.wstx.exc com.ctc.wstx.io com.ctc.wstx.msv com.ctc.wstx.sax com.ctc.wstx.sr com.ctc.wstx.stax com.ctc.wstx.sw com.ctc.wstx.util org.codehaus.stax2 org.codehaus.stax2.evt org.codehaus.stax2.io 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>wstx-asl</artifactId> <name>Woodstox</name> <version>3.2.2</version> <description>Woodstox is a high-performance XML processor that implements Stax (JSR-173) API</description> <!-- Contact information --> <url>http://woodstox.codehaus.org</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 (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>Codehaus</name> <url>http://www.codehaus.org/</url> </organization> </project>