# xercesImpl

## Overview

### 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.

### Snippets

```xml
<dependency>
    <groupId>xerces</groupId>
    <artifactId>xercesImpl</artifactId>
    <version>2.9.0</version>
</dependency>
```

### Maven POM File

```xml
<?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>4</version>
  </parent>
  <groupId>xerces</groupId>
  <artifactId>xercesImpl</artifactId>
  <version>2.9.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.04</version>
    </dependency>
    <dependency>
      <groupId>xml-resolver</groupId>
      <artifactId>xml-resolver</artifactId>
      <version>1.2</version>
      <optional>true</optional>
    </dependency>
  </dependencies>

<build>
    <sourceDirectory>src</sourceDirectory>
  </build>
</project>
```

#### Metadata

- **Age**: 17 years ago
- **Licenses**: The Apache Software License, Version 2.0

#### Organization

- **[xerces](https://central.sonatype.com/namespace/xerces)**

#### External Resources

- **[Project URL](http://xerces.apache.org/xerces2-j)**
- **[Source Control](http://svn.apache.org/viewvc/maven/pom/tags/apache-4/xercesImpl)**

#### Known Contributors

No contributors found.
