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.7.1</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:Dual license consisting of the CDDL v1.1 and GPL v2
URL: https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html.
The stax-ex-1.7.1 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 |
---|---|---|
XML Parser | stax-api 1.0-2 StAX is a standard XML processing API that allows you to stream XML data from and to your application. | 219 |
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.7.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
XML | streambuffer 1.5.1 Stream based representation for XML infoset | 10 |
The following plugins are used in the stax-ex-1.7.1.jar
The following packages are defined in the stax-ex-1.7.1.jar
org.jvnet.staxex
Here is the content of the POM file.
<!-- DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. Copyright (c) 1997-2011 Oracle and/or its affiliates. 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_1_1.html or packager/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 packager/legal/LICENSE.txt. GPL Classpath Exception: Oracle designates this particular file as subject to the "Classpath" exception as provided by Oracle in the GPL Version 2 section of the License file that accompanied this code. Modifications: If applicable, add the following below the License Header, with the fields enclosed by brackets [] replaced by your own identifying information: "Portions Copyright [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"> <parent> <groupId>net.java</groupId> <artifactId>jvnet-parent</artifactId> <version>3</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jvnet.staxex</groupId> <artifactId>stax-ex</artifactId> <version>1.7.1</version> <packaging>jar</packaging> <name>Extended StAX API</name> <inceptionYear>2006</inceptionYear> <description>Extensions to JSR-173 StAX API.</description> <url>http://stax-ex.java.net/</url> <scm> <connection>scm:svn:https://svn.java.net/svn/stax-ex~svn/tags/stax-ex-1.7.1</connection> <developerConnection>scm:svn:https://svn.java.net/svn/stax-ex~svn/tags/stax-ex-1.7.1</developerConnection> <url>http://java.net/projects/stax-ex/sources/svn/show/tags/stax-ex-1.7.1</url> </scm> <licenses> <license> <name> Dual license consisting of the CDDL v1.1 and GPL v2 </name> <url>https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>javax.xml.stream</groupId> <artifactId>stax-api</artifactId> <version>1.0-2</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> <scope>test</scope> </dependency> <!-- <dependency> <groupId>com.sun.xml.stream</groupId> <artifactId>sjsxp</artifactId> <version>1.0.1</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>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <useReleaseProfile>false</useReleaseProfile> <arguments>${release.arguments}</arguments> </configuration> </plugin> </plugins> </build> </project>