Extended StAX API.
Extensions to JSR-173 StAX API..
Here is the list of declaration for stax-ex. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jvnet.staxex</groupId> <artifactId>stax-ex</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for stax-ex is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Common Development And Distribution License (CDDL) Version 1.0
URL: http://www.sun.com/cddl/cddl.html.
The stax-ex-1.2 has 3 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 |
---|---|---|
JEE | activation 1.1 JavaBeans Activation Framework (JAF) is a standard extension to the Java platform that lets you take advantage of standard services to: determine the type of an arbitrary piece of data; encapsulate access to it; discover the operations available on it; and instantiate the appropriate bean to perfor... | 369 |
JUnit | junit 3.8 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. | 111 |
The following table lists the most popular artifacts which are depending on stax-ex-1.2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
XML | jaxws-rt 2.1.7 Open source Reference Implementation of JSR-224: Java API for XML Web Services | 7 |
XML | jaxws-rt 2.1.4 Open source Reference Implementation of JSR-224: Java API for XML Web Services | 5 |
XML Binding | ow2-bundles-externals-jaxb2 1.0.17 JAXB2 Library | 5 |
XML | jaxws-rt 2.1.3 Open source Reference Implementation of JSR-224: Java API for XML Web Services | 25 |
The following plugins are used in the stax-ex-1.2.jar
The following packages are defined in the stax-ex-1.2.jar
org.jvnet.staxex
Here is the content of the POM file.
<!-- DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved. The contents of this file are subject to the terms of either the GNU General Public License Version 2 only ("GPL") or the Common Development and Distribution License("CDDL") (collectively, the "License"). You may not use this file except in compliance with the License. You can obtain a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific language governing permissions and limitations under the License. When distributing the software, include this License Header Notice in each file and include the License file at glassfish/bootstrap/legal/LICENSE.txt. Sun designates this particular file as subject to the "Classpath" exception as provided by Sun in the GPL Version 2 section of the License file that accompanied this code. If applicable, add the following below the License Header, with the fields enclosed by brackets [] replaced by your own identifying information: "Portions Copyrighted [year] [name of copyright owner]" Contributor(s): If you wish your version of this file to be governed by only the CDDL or only the GPL Version 2, indicate your decision by adding "[Contributor] elects to include this software in this distribution under the [CDDL or GPL Version 2] license." If you don't indicate a single choice of license, a recipient has the option to distribute your version of this file under either the CDDL, the GPL Version 2 or to extend the choice of license to its licensees as provided above. However, if you add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the option applies only if the new code is made subject to such option by the copyright holder. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.jvnet.staxex</groupId> <artifactId>stax-ex</artifactId> <version>1.2</version> <name>Extended StAX API</name> <inceptionYear>2006</inceptionYear> <description>Extensions to JSR-173 StAX API.</description> <url>https://stax-ex.dev.java.net/</url> <scm> <connection>scm:cvs:pserver:guest@cvs.dev.java.net:/cvs:stax-ex/stax-ex</connection> <developerConnection>scm:cvs:pserver:kohsuke@cvs.dev.java.net:/cvs:stax-ex/stax-ex</developerConnection> <url>https://stax-ex.dev.java.net/source/browse/stax-ex/stax-ex</url> <tag>stax-ex-1_2</tag> </scm> <distributionManagement> <repository> <uniqueVersion>false</uniqueVersion> <id>local-repository</id> <!--url>file:${path-to-m2-repo.java.net}</url--> <url>java-net:/maven2-repository/trunk/www/repository</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>javax.xml.stream</groupId> <artifactId>stax-api</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8</version> </dependency> </dependencies> <build> <sourceDirectory>src/java</sourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>com.sun.wts.tools.ant</groupId> <artifactId>package-rename-task</artifactId> <configuration> <patterns> <org.jvnet.staxex>com.sun.xml.internal.org.jvnet.staxex</org.jvnet.staxex> </patterns> </configuration> </plugin> </plugins> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>1.3</version> </extension> </extensions> </build> <licenses> <license> <name>Common Development And Distribution License (CDDL) Version 1.0</name> <url>http://www.sun.com/cddl/cddl.html</url> <distribution>repo</distribution> </license> </licenses> </project>