l

libz

zlib is designed to be a free, general-purpose, legally unencumbered -- that is, not covered by any patents -- lossless data-compression library for use on virtually any computer hardware and operating system. The zlib data format is itself portable across platforms. Unlike the LZW compression method used in Unix compress(1) and in the GIF image format, the compression method currently used in zlib essentially never expands the data. (LZW can double or triple the file size in extreme cases.) zlib's memory footprint is also independent of the input data and can be reduced, if necessary, at some cost in compression.
http://www.zlib.net/
zlib license
Jean-loup Gailly and Mark Adler
Jean-loup Gailly Mark Adler
Files download
File Operation
libz-4.0.0.pom download
libz-4.0.0-sources.jar download
Apache Maven
<dependency>
  <groupId>com.tagtraum</groupId>
  <artifactId>libz</artifactId>
  <version>4.0.0</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'com.tagtraum:libz:4.0.0'
Gradle Kotlin
implementation("com.tagtraum:libz:4.0.0")
Scala SBT
libraryDependencies += "com.tagtraum" % "libz" % "4.0.0"
Groovy Grape
@Grapes(
  @Grab(group='com.tagtraum', module='libz', version='4.0.0')
)
Apache Ivy
<dependency org="com.tagtraum" name="libz" rev="4.0.0" />
Leiningen
[com.tagtraum/libz "4.0.0"]
Apache Buildr
'com.tagtraum:libz:jar:4.0.0'