MVN

io.github.tsabirgaliev : zip

Maven & Gradle

Mar 20, 2017

Lazy streaming zip · The Java JDK includes various means of creating/consuming compressed files. What is missing is easy way of creating lazy streamed zip archive, in spirit of java.util.zip.DeflaterInputStream. This implementation relies on the fact that the PKZIP specification allows archiving data streams of sizes not known upfront. This implies that the archives produced will be readable only by tools aware of this trick. Notably, java.util.zip.ZipInputStream is OK with that, so we use it to test compatibility.

<dependency>
    <groupId>io.github.tsabirgaliev</groupId>
    <artifactId>zip</artifactId>
    <version>1.0.0.Beta3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

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

  • Latest Stable: 1.0.0.Beta3
  • Latest Beta: 1.0.0.Beta3

All Versions

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

Version Vulnerabilities Updated
1.0.x
zip-1.0.0.Beta3

How to add a dependency to Maven

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

<dependency>
    <groupId>io.github.tsabirgaliev</groupId>
    <artifactId>zip</artifactId>
    <version>1.0.0.Beta3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.github.tsabirgaliev : zip gradle dependency to your build.gradle file:

implementation 'io.github.tsabirgaliev:zip:1.0.0.Beta3'

Gradle Kotlin DSL: Add the following io.github.tsabirgaliev : zip gradle kotlin dependency to your build.gradle.kts file:

implementation("io.github.tsabirgaliev:zip:1.0.0.Beta3")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.github.tsabirgaliev : zip sbt scala dependency to your build.sbt file:

libraryDependencies += "io.github.tsabirgaliev" % "zip" % "1.0.0.Beta3"