Maven Repository - POM file for XML Parser stax 1.2.0_rc2-dev 1.2.0_rc2-dev

Summary

StAX.

StAX is the reference implementation of the StAX API.

Declaration

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.2.0_rc2-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.

Depends on

The stax-1.2.0_rc2-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.

CategoryArtifactDepended By Count
XML Parserstax-api 1.0.1
StAX API is the standard java XML processing API defined by JSR-173
254
JUnitjunit 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




Plugin

The following plugins are used in the stax-1.2.0_rc2-dev.jar

  1. surefire

Packages

The following packages are defined in the stax-1.2.0_rc2-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




POM File Source

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.2.0_rc2-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>2002</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>stax</groupId>
      <artifactId>stax-api</artifactId>
      <version>1.0.1</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </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>