MVN

foundation.fluent.api : fluent-xml-writer

Maven & Gradle

Aug 10, 2018
1 usages
1 stars

Fluent hierarchical XML writer, allowing to generate XML file (or other output stream) fluently: document(output).version(1.0).tag("root").text("Hello").end().close(); It is immediately streaming to the output stream. Not holding anything in memory.

<dependency>
    <groupId>foundation.fluent.api</groupId>
    <artifactId>fluent-xml-writer</artifactId>
    <version>1.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of foundation.fluent.api : fluent-xml-writer to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0

All Versions

Choose a version of foundation.fluent.api : fluent-xml-writer to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0
fluent-xml-writer-1.0

How to add a dependency to Maven

Add the following foundation.fluent.api : fluent-xml-writer maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>foundation.fluent.api</groupId>
    <artifactId>fluent-xml-writer</artifactId>
    <version>1.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following foundation.fluent.api : fluent-xml-writer gradle dependency to your build.gradle file:

implementation 'foundation.fluent.api:fluent-xml-writer:1.0'

Gradle Kotlin DSL: Add the following foundation.fluent.api : fluent-xml-writer gradle kotlin dependency to your build.gradle.kts file:

implementation("foundation.fluent.api:fluent-xml-writer:1.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following foundation.fluent.api : fluent-xml-writer sbt scala dependency to your build.sbt file:

libraryDependencies += "foundation.fluent.api" % "fluent-xml-writer" % "1.0"

Advertisement