MVN

com.github.dweidenfeld : xml-event-limit-generator

Maven & Gradle

May 20, 2014
0 stars

XML Event Limit Generator · The XmlEventLimitGenerator is a Java library to generate xml strings. You push documents (or objects, like you want) to the xml generator and the generator proceeds the pushed document. While the push sequence it automatically generates an average size of all documents. The benefit of this library is, that you can generate xml strings with a predefined max size. This max size relates to the average document size, that is calculated on the fly, so there is no 100% guarantee, that no xml string will pass the max size, but there is a factor that can be specified as buffer.

<dependency>
    <groupId>com.github.dweidenfeld</groupId>
    <artifactId>xml-event-limit-generator</artifactId>
    <version>1.0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.dweidenfeld : xml-event-limit-generator to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.1

All Versions

Choose a version of com.github.dweidenfeld : xml-event-limit-generator to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
xml-event-limit-generator-1.0.1

How to add a dependency to Maven

Add the following com.github.dweidenfeld : xml-event-limit-generator maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.dweidenfeld</groupId>
    <artifactId>xml-event-limit-generator</artifactId>
    <version>1.0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.dweidenfeld : xml-event-limit-generator gradle dependency to your build.gradle file:

implementation 'com.github.dweidenfeld:xml-event-limit-generator:1.0.1'

Gradle Kotlin DSL: Add the following com.github.dweidenfeld : xml-event-limit-generator gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.dweidenfeld:xml-event-limit-generator:1.0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.dweidenfeld : xml-event-limit-generator sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.dweidenfeld" % "xml-event-limit-generator" % "1.0.1"