MVN

net.sourceforge.xbis : xbis

Maven & Gradle

Jul 22, 2011

XML Binary Infoset · XBIS is an encoding format for XML documents that is fully convertible to and from text, with information set equivalence between the original document text and regenerated document text. It's intended for use in transmitting XML documents between application components, and is therefore designed for processing speed. The current Java language implementation offers several times the performance of SAX2 parsers working from text documents across a wide range of document types and sizes, and across JVMs tested, while also providing a substantial reduction in document size for most types of XML documents.

<dependency>
    <groupId>net.sourceforge.xbis</groupId>
    <artifactId>xbis</artifactId>
    <version>0.9.5</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.sourceforge.xbis : xbis to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.9.5

All Versions

Choose a version of net.sourceforge.xbis : xbis to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.9.x
xbis-0.9.5

How to add a dependency to Maven

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

<dependency>
    <groupId>net.sourceforge.xbis</groupId>
    <artifactId>xbis</artifactId>
    <version>0.9.5</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.sourceforge.xbis : xbis gradle dependency to your build.gradle file:

implementation 'net.sourceforge.xbis:xbis:0.9.5'

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

implementation("net.sourceforge.xbis:xbis:0.9.5")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.sourceforge.xbis : xbis sbt scala dependency to your build.sbt file:

libraryDependencies += "net.sourceforge.xbis" % "xbis" % "0.9.5"

Advertisement