Download zt-zip-1.9.jar file

Introduction

You can download zt-zip-1.9.jar in this page.

License

The Apache Software License, Version 2.0

Type List

zt-zip-1.9.jar file has the following types.

META-INF/MANIFEST.MF
org.zeroturnaround.zip.ByteSource.class
org.zeroturnaround.zip.FileSource.class
org.zeroturnaround.zip.IdentityNameMapper.class
org.zeroturnaround.zip.Java6FileApiPermissionsStrategy.class
org.zeroturnaround.zip.Java7Nio2ApiPermissionsStrategy.class
org.zeroturnaround.zip.NameMapper.class
org.zeroturnaround.zip.ZTFilePermissions.class
org.zeroturnaround.zip.ZTFilePermissionsStrategy.class
org.zeroturnaround.zip.ZTFilePermissionsUtil.class
org.zeroturnaround.zip.ZTFileUtil.class
org.zeroturnaround.zip.ZTZipReflectionUtil.class
org.zeroturnaround.zip.ZipBreakException.class
org.zeroturnaround.zip.ZipEntryCallback.class
org.zeroturnaround.zip.ZipEntryOrInfoAdapter.class
org.zeroturnaround.zip.ZipEntrySource.class
org.zeroturnaround.zip.ZipEntryUtil.class
org.zeroturnaround.zip.ZipException.class
org.zeroturnaround.zip.ZipExceptionUtil.class
org.zeroturnaround.zip.ZipFileUtil.class
org.zeroturnaround.zip.ZipInfoCallback.class
org.zeroturnaround.zip.ZipUtil.class
org.zeroturnaround.zip.Zips.class
org.zeroturnaround.zip.commons.FileUtils.class
org.zeroturnaround.zip.commons.FilenameUtils.class
org.zeroturnaround.zip.commons.IOUtils.class
org.zeroturnaround.zip.extra.AsiExtraField.class
org.zeroturnaround.zip.extra.ExtraFieldUtils.class
org.zeroturnaround.zip.extra.UnrecognizedExtraField.class
org.zeroturnaround.zip.extra.ZipConstants.class
org.zeroturnaround.zip.extra.ZipExtraField.class
org.zeroturnaround.zip.extra.ZipLong.class
org.zeroturnaround.zip.extra.ZipShort.class
org.zeroturnaround.zip.timestamps.Java8TimestampStrategy.class
org.zeroturnaround.zip.timestamps.PreJava8TimestampStrategy.class
org.zeroturnaround.zip.timestamps.TimestampStrategy.class
org.zeroturnaround.zip.timestamps.TimestampStrategyFactory.class
org.zeroturnaround.zip.transform.ByteArrayZipEntryTransformer.class
org.zeroturnaround.zip.transform.FileZipEntryTransformer.class
org.zeroturnaround.zip.transform.StreamZipEntryTransformer.class
org.zeroturnaround.zip.transform.StringZipEntryTransformer.class
org.zeroturnaround.zip.transform.ZipEntrySourceZipEntryTransformer.class
org.zeroturnaround.zip.transform.ZipEntryTransformer.class
org.zeroturnaround.zip.transform.ZipEntryTransformerEntry.class

Pom

zt-zip-1.9.pom file content.

<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>org.zeroturnaround</groupId>
  <artifactId>zt-zip</artifactId>
  <packaging>jar</packaging>
  <name>ZT Zip</name>
  <version>1.9</version>

  <scm>
    <connection>scm:git:git@github.com:zeroturnaround/zt-zip.git</connection>
    <url>scm:git:git@github.com:zeroturnaround/zt-zip.git</url>
    <developerConnection>scm:git:git@github.com:zeroturnaround/zt-zip.git</developerConnection>
  </scm>

  <distributionManagement>
    <repository>
      <id>sonatype-nexus-staging</id>
      <name>Sonatype OSS Staging</name>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
      <layout>default</layout>
    </repository>
    <snapshotRepository>
      <id>sonatype-nexus-snapshots</id>
      <name>Sonatype OSS Snapshots</name>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
      <layout>default</layout>
    </snapshotRepository>
  </distributionManagement>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.6.6</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <type>jar</type>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
      <version>1.6.6</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.16</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.3.1</version>
        <configuration>
          <archive>
            <addMavenDescriptor>false</addMavenDescriptor>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.2.1</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.9.1</version>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>release-sign-artifacts</id>
      <activation>
        <property>
          <name>performRelease</name>
          <value>true</value>
        </property>
      </activation>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-release-plugin</artifactId>
            <version>2.1</version>
            <configuration>
              <tagBase>https://svn.apache.org/repos/asf/maven/components/releases</tagBase>
              <mavenExecutorId>forked-path</mavenExecutorId>
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.4</version>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
  <organization>
    <name>ZeroTurnaround</name>
    <url>http://zeroturnaround.com/</url>
  </organization>
  <url>https://github.com/zeroturnaround/zt-zip</url>
  <description>The project is intended to have a small, easy and fast library to process ZIP archives. Either create, modify or explode them. On disk or in memory.</description>

  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <comments>A business-friendly OSS license</comments>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>rein</id>
      <name>Rein</name>
      <email>rein@zeroturnaround.com</email>
      <url>http://www.linkedin.com/in/reinra</url>
      <organization>ZeroTurnaround</organization>
      <organizationUrl>http://zeroturnaround.com</organizationUrl>
    </developer>
    <developer>
      <id>toomasr</id>
      <name>Toomas</name>
      <email>toomas@zeroturnaround.com</email>
      <url>http://www.linkedin.com/in/toomasr</url>
      <organization>ZeroTurnaround</organization>
      <organizationUrl>http://zeroturnaround.com</organizationUrl>
    </developer>
  </developers>
</project>

POM Entry

<dependency>
   <groupId>org.zeroturnaround</groupId>
   <artifactId>zt-zip</artifactId>
   <version>1.9</version>
</dependency>

Download

If you think the following zt-zip-1.9.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download zt-zip-1.9.jar file




PreviousNext

Related