MVN

xmlwriter : xmlwriter

Maven & Gradle

Jan 02, 2008
2 usages

xmlwriter · A great way to output Xml. Far easier to code with than painful DOM or SAX like solutions and much nicer in terms of speed and memory usage. <br/> <br/> While XmlWriter contains its own xml outputter, it has the ability to sit on top of other core Xml writing products, such as <a href="http://xmlenc.sf.net/">XmlEnc</a>. In addition, the user may layer other functionalities on top of the core writing, such as on the fly schema checking, date/number formatting, specific empty-element handling and pretty-printing.

<dependency>
    <groupId>xmlwriter</groupId>
    <artifactId>xmlwriter</artifactId>
    <version>2.2.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of xmlwriter : xmlwriter to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.2.2

All Versions

Choose a version of xmlwriter : xmlwriter to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.2.x
xmlwriter-2.2.2
xmlwriter-2.2.1
2.2
xmlwriter-2.2
2.1
xmlwriter-2.1
2.0
xmlwriter-2.0

How to add a dependency to Maven

Add the following xmlwriter : xmlwriter maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>xmlwriter</groupId>
    <artifactId>xmlwriter</artifactId>
    <version>2.2.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following xmlwriter : xmlwriter gradle dependency to your build.gradle file:

implementation 'xmlwriter:xmlwriter:2.2.2'

Gradle Kotlin DSL: Add the following xmlwriter : xmlwriter gradle kotlin dependency to your build.gradle.kts file:

implementation("xmlwriter:xmlwriter:2.2.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following xmlwriter : xmlwriter sbt scala dependency to your build.sbt file:

libraryDependencies += "xmlwriter" % "xmlwriter" % "2.2.2"

Advertisement