JZlib.
JZlib is a re-implementation of zlib in pure Java.
Here is the list of declaration for jzlib. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.jcraft</groupId> <artifactId>jzlib</artifactId> <version>1.1.3</version> </dependency>
If you think this Maven repository POM file listing for jzlib is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:BSD
URL: http://www.jcraft.com/jzlib/LICENSE.txt.
The following plugins are used in the jzlib-1.1.3.jar
The following packages are defined in the jzlib-1.1.3.jar
com.jcraft.jzlib
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.jcraft</groupId> <artifactId>jzlib</artifactId> <version>1.1.3</version> <name>JZlib</name> <description>JZlib is a re-implementation of zlib in pure Java</description> <url>http://www.jcraft.com/jzlib/</url> <organization> <name>jcraft</name> <url>http://www.jcraft.com/</url> </organization> <scm> <connection>scm:git:git://github.com/ymnk/jzlib.git</connection> <developerConnection>scm:git:git://github.com/ymnk/jzlib.git</developerConnection> <url>git://github.com/ymnk/jzlib.git</url> </scm> <licenses> <license> <name>BSD</name> <url>http://www.jcraft.com/jzlib/LICENSE.txt</url> </license> </licenses> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.0</version> <configuration> <source>1.5</source> <target>1.5</target> <optimize>true</optimize> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-external</artifactId> <version>1.0-alpha-5</version> </extension> </extensions> </build> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>6</version> </parent> </project>