StAX.
StAX is the reference implementation of the StAX API.
Here is the list of declaration for stax. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>stax</groupId> <artifactId>stax</artifactId> <version>1.1.1-dev</version> </dependency>
If you think this Maven repository POM file listing for stax is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The stax-1.1.1-dev has 2 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 |
The following table lists the most popular artifacts which are depending on stax-1.1.1-dev. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Java Library | dozer 5.3.2 Dozer is a powerful Java Bean to Java Bean mapper that recursively copies data from one object to another | 5 |
The following plugins are used in the stax-1.1.1-dev.jar
The following packages are defined in the stax-1.1.1-dev.jar
com.bea.xml.stream com.bea.xml.stream.events com.bea.xml.stream.filters com.bea.xml.stream.reader com.bea.xml.stream.samples com.bea.xml.stream.util com.wutka.dtd
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>stax</groupId> <artifactId>stax</artifactId> <name>StAX</name> <version>1.1.1-dev</version> <description>StAX is the reference implementation of the StAX API</description> <url>http://stax.codehaus.org/</url> <issueManagement> <url>http://jira.codehaus.org/browse/STAX</url> </issueManagement> <ciManagement> <notifiers> <notifier> <configuration> <address>dev@stax.codehaus.org</address> </configuration> </notifier> </notifiers> </ciManagement> <inceptionYear>2004</inceptionYear> <mailingLists> <mailingList> <name>StAX Builders List</name> <subscribe>stax_builders-subscribe@yahoogroups.com</subscribe> <unsubscribe>stax_builders-unsubscribe@yahoogroups.com</unsubscribe> <archive>http://groups.yahoo.com/group/stax_builders/</archive> </mailingList> </mailingLists> <scm> <connection>scm:cvs:pserver:anonymous@cvs.stax.codehaus.org:/home/projects/stax/scm:stax</connection> <developerConnection>scm:cvs:ext:${maven.username}@cvs.stax.codehaus.org:/home/projects/stax/scm:stax</developerConnection> <url>http://cvs.stax.codehaus.org/stax/</url> </scm> <build> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test</testSourceDirectory> <resources> <resource> <directory>src/conf</directory> <includes> <include>**/*</include> </includes> </resource> </resources> <testResources> <testResource> <directory>test</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> </testResource> </testResources> <plugins> <plugin> <artifactId>surefire</artifactId> <configuration> <includes> <include>**/*Test.*</include> </includes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>xmlbeans</groupId> <artifactId>xmlbeans-jsr173-api</artifactId> <version>2.0-dev</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> </dependency> </dependencies> <distributionManagement> <repository> <id>default</id> <name>Default Repository</name> <url>file:///home/projects/stax/dist</url> </repository> <site> <id>default</id> <name>Default Site</name> <url>scp://stax.codehaus.org//home/projects/stax/public_html/maven</url> </site> </distributionManagement> </project>