Xerces2 Java Parser.
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....
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.8.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.
The following table lists the most popular artifacts which are depending on xercesImpl-2.8.0. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Web Service | woden 1.0.0M6 The Woden project is an incubation subproject of the Apache Web Services Project to develop a Java class library for reading, manipulating, creating and writing WSDL documents, initially to support WSDL 2.0 but with the longer term aim of supporting past, present and future versions of ... | 5 |
Web Framework | docbkx-maven-plugin 2.0.14 A Maven plugin for generating HTML from DocBook. | 7 |
XML | docbkx-maven-base 2.0.14 A number of base classes, providing the basic behaviour of objects / plugins transforming DocBook XML sources into some other format. | 7 |
XML | xom 1.2.5 The XOM Dual Streaming/Tree API for Processing XML | 29 |
The following packages are defined in the xercesImpl-2.8.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.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.
<?xml version="1.0" encoding="UTF-8"?> <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> <parent> <groupId>org.apache</groupId> <artifactId>apache</artifactId> <version>1</version> </parent> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.8.0</version> <name>Xerces2 Java Parser</name> <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. </description> <url>http://xerces.apache.org/xerces2-j</url> <dependencies> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.3.03</version> </dependency> <dependency> <groupId>xml-resolver</groupId> <artifactId>xml-resolver</artifactId> <version>1.1</version> <optional>true</optional> </dependency> </dependencies> <build> <sourceDirectory>src</sourceDirectory> </build> </project>