MVN

io.github.xz-java : xz-java

Maven & Gradle

May 12, 2024
0 stars

XZ for Java · XZ for Java is an open-source Java implementation of the popular XZ Utils, a powerful tool widely used in Linux for file compression and decompression. This project brings the efficient LZMA2 compression algorithm to the Java platform, providing a high-performance, scalable solution for Java applications requiring data compression.

<dependency>
    <groupId>io.github.xz-java</groupId>
    <artifactId>xz-java</artifactId>
    <version>1.8</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.github.xz-java : xz-java to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.8

All Versions

Choose a version of io.github.xz-java : xz-java to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.8
xz-java-1.8
1.7
xz-java-1.7

How to add a dependency to Maven

Add the following io.github.xz-java : xz-java maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.github.xz-java</groupId>
    <artifactId>xz-java</artifactId>
    <version>1.8</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.github.xz-java : xz-java gradle dependency to your build.gradle file:

implementation 'io.github.xz-java:xz-java:1.8'

Gradle Kotlin DSL: Add the following io.github.xz-java : xz-java gradle kotlin dependency to your build.gradle.kts file:

implementation("io.github.xz-java:xz-java:1.8")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.github.xz-java : xz-java sbt scala dependency to your build.sbt file:

libraryDependencies += "io.github.xz-java" % "xz-java" % "1.8"