Maven Repository - POM file for Zip jzlib 1.1.2 1.1.2

Summary

JZlib.

JZlib is a re-implementation of zlib in pure Java.

Declaration

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.2</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.

License

Name:Revised BSD
URL: http://www.jcraft.com/jzlib/LICENSE.txt.

Depended by

The following table lists the most popular artifacts which are depending on jzlib-1.1.2. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Httpws-client 0.0.8-1
Higgs HTTP Client
5




Plugin

The following plugins are used in the jzlib-1.1.2.jar

  1. maven-compiler-plugin
  2. maven-gpg-plugin
  3. maven-javadoc-plugin
  4. maven-source-plugin

Packages

The following packages are defined in the jzlib-1.1.2.jar

com.jcraft.jzlib

POM File Source

Here is the content of the POM file.

<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.jcraft</groupId>
  <artifactId>jzlib</artifactId>
  <packaging>jar</packaging>
  <version>1.1.2</version>
  <name>JZlib</name>
  <url>http://www.jcraft.com/jzlib/</url>
  <description>JZlib is a re-implementation of zlib in pure Java</description>
  <organization>
    <name>JCraft,Inc.</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>Revised 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>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </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>