Xerces2-j.
Xerces2 is the next generation of high performance, fully compliant XML parsers in the Apache Xerces family. This new version of Xerces introduces the Xerces Native Interface (XNI), a complete framework for building parser components and configurations that is extremely modular and easy to program.....
Here is the list of declaration for xercesImpl. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.11.0</version> </dependency>
If you think this Maven repository POM file listing for xercesImpl 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 xercesImpl-2.11.0 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 |
---|---|---|
XML Parser | xml-apis 1.4.01 xml-commons provides an Apache-hosted set of DOM, SAX, and JAXP interfaces for use in other xml-based projects. Our hope is that we can standardize on both a common version and packaging scheme for these critical XML standards interfaces to make the lives of both our developers ... | 57 |
XML Parser | xml-resolver 1.2 xml-commons provides an Apache-hosted set of DOM, SAX, and JAXP interfaces for use in other xml-based projects. Our hope is that we can standardize on both a common version and packaging scheme for these critical XML standards interfaces to make the lives of both our developers ... | 99 |
The following table lists the most popular artifacts which are depending on xercesImpl-2.11.0. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Data Structure | phloc-commons 4.3.3 phloc very basic stuff | 7 |
JUnit | htmlunit 2.13 A headless browser intended for use in testing web-based applications. | 10 |
JUnit | htmlunit 2.14 A headless browser intended for use in testing web-based applications. | 7 |
JUnit | htmlunit 2.15 A headless browser intended for use in testing web-based applications. | 9 |
The following packages are defined in the xercesImpl-2.11.0.jar
org.apache.html.dom org.apache.wml org.apache.wml.dom org.apache.xerces.dom org.apache.xerces.dom.events org.apache.xerces.dom3.as org.apache.xerces.impl org.apache.xerces.impl.dtd org.apache.xerces.impl.dtd.models org.apache.xerces.impl.dv org.apache.xerces.impl.dv.dtd org.apache.xerces.impl.dv.util org.apache.xerces.impl.dv.xs org.apache.xerces.impl.io org.apache.xerces.impl.msg org.apache.xerces.impl.validation org.apache.xerces.impl.xpath org.apache.xerces.impl.xpath.regex org.apache.xerces.impl.xs org.apache.xerces.impl.xs.identity org.apache.xerces.impl.xs.models org.apache.xerces.impl.xs.opti org.apache.xerces.impl.xs.traversers org.apache.xerces.impl.xs.util org.apache.xerces.jaxp org.apache.xerces.jaxp.datatype org.apache.xerces.jaxp.validation org.apache.xerces.parsers org.apache.xerces.stax org.apache.xerces.stax.events org.apache.xerces.util org.apache.xerces.xinclude org.apache.xerces.xni org.apache.xerces.xni.grammars org.apache.xerces.xni.parser org.apache.xerces.xpointer org.apache.xerces.xs org.apache.xerces.xs.datatypes org.apache.xml.serialize org.w3c.dom.html
Here is the content of the POM file.
<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"> <name>Xerces2-j</name> <modelVersion>4.0.0</modelVersion> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.11.0</version> <description> Xerces2 is the next generation of high performance, fully compliant XML parsers in the Apache Xerces family. This new version of Xerces introduces the Xerces Native Interface (XNI), a complete framework for building parser components and configurations that is extremely modular and easy to program. The Apache Xerces2 parser is the reference implementation of XNI but other parser components, configurations, and parsers can be written using the Xerces Native Interface. For complete design and implementation documents, refer to the XNI Manual. Xerces2 is a fully conforming XML Schema 1.0 processor. A partial experimental implementation of the XML Schema 1.1 Structures and Datatypes Working Drafts (December 2009) and an experimental implementation of the XML Schema Definition Language (XSD): Component Designators (SCD) Candidate Recommendation (January 2010) are provided for evaluation. For more information, refer to the XML Schema page. Xerces2 also provides a complete implementation of the Document Object Model Level 3 Core and Load/Save W3C Recommendations and provides a complete implementation of the XML Inclusions (XInclude) W3C Recommendation. It also provides support for OASIS XML Catalogs v1.1. Xerces2 is able to parse documents written according to the XML 1.1 Recommendation, except that it does not yet provide an option to enable normalization checking as described in section 2.13 of this specification. It also handles namespaces according to the XML Namespaces 1.1 Recommendation, and will correctly serialize XML 1.1 documents if the DOM level 3 load/save APIs are in use. </description> <url>https://xerces.apache.org/xerces2-j/</url> <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> <scm> <url>https://svn.apache.org/repos/asf/xerces/java/</url> <connection>https://svn.apache.org/repos/asf/xerces/java/tags/Xerces-J_2_11_0/</connection> </scm> <dependencies> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.4.01</version> </dependency> <dependency> <groupId>xml-resolver</groupId> <artifactId>xml-resolver</artifactId> <version>1.2</version> <optional>true</optional> </dependency> </dependencies> </project>