Xalan Java Serializer.
Serializer to write out XML, HTML etc. as a stream of characters from an input DOM or from input SAX events..
Here is the list of declaration for serializer. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>xalan</groupId> <artifactId>serializer</artifactId> <version>2.7.1</version> </dependency>
If you think this Maven repository POM file listing for serializer is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The serializer-2.7.1 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.3.04 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 ... | 88 |
Parser | xercesImpl 2.9.0 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... | 22 |
The following table lists the most popular artifacts which are depending on serializer-2.7.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Web Service | cxf-bundle 2.5.2 Apache CXF Bundle Jar | 5 |
Console | xalan 2.7.1 Xalan-Java is an XSLT processor for transforming XML documents into HTML, text, or other XML document types. It implements XSL Transformations (XSLT) Version 1.0 and XML Path Language (XPath) Version 1.0 and can be used from the command line, in an applet or a servlet, or as a module in... | 155 |
The following packages are defined in the serializer-2.7.1.jar
org.apache.xml.serializer org.apache.xml.serializer.dom3 org.apache.xml.serializer.utils
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>4</version> </parent> <groupId>xalan</groupId> <artifactId>serializer</artifactId> <version>2.7.1</version> <name>Xalan Java Serializer</name> <description> Serializer to write out XML, HTML etc. as a stream of characters from an input DOM or from input SAX events. </description> <url>http://xml.apache.org/xalan-j/</url> <dependencies> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>1.3.04</version> </dependency> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.9.0</version> <optional>true</optional> </dependency> </dependencies> </project>