Class Zip

java.lang.Object
org.gradle.api.internal.AbstractTask
org.gradle.api.DefaultTask
org.gradle.api.internal.ConventionTask
All Implemented Interfaces:
Comparable<Task>, ContentFilterable, CopyProcessingSpec, CopySourceSpec, CopySpec, org.gradle.api.internal.DynamicObjectAware, org.gradle.api.internal.file.copy.CopySpecSource, org.gradle.api.internal.IConventionAware, org.gradle.api.internal.TaskInternal, ExtensionAware, Task, PatternFilterable, org.gradle.util.Configurable<Task>
Direct Known Subclasses:
Jar

public class Zip extends AbstractArchiveTask
Assembles a ZIP archive. The default is to compress the contents of the zip.
  • Field Details

  • Constructor Details

    • Zip

      public Zip()
  • Method Details

    • getCompressor

      @Internal protected org.gradle.api.internal.file.copy.ZipCompressor getCompressor()
    • createCopyAction

      protected org.gradle.api.internal.file.copy.CopyAction createCopyAction()
      Specified by:
      createCopyAction in class AbstractCopyTask
    • getEntryCompression

      @Input public ZipEntryCompression getEntryCompression()
      Returns the compression level of the entries of the archive. If set to ZipEntryCompression.DEFLATED (the default), each entry is compressed using the DEFLATE algorithm. If set to ZipEntryCompression.STORED the entries of the archive are left uncompressed.
      Returns:
      the compression level of the archive contents.
    • setEntryCompression

      public void setEntryCompression(ZipEntryCompression entryCompression)
      Sets the compression level of the entries of the archive. If set to ZipEntryCompression.DEFLATED (the default), each entry is compressed using the DEFLATE algorithm. If set to ZipEntryCompression.STORED the entries of the archive are left uncompressed.
      Parameters:
      entryCompression - STORED or DEFLATED
    • setZip64

      @Incubating public void setZip64(boolean allowZip64)
      Enables building zips with more than 65535 files or bigger than 4GB.
      See Also:
    • isZip64

      @Input @Incubating public boolean isZip64()
      Whether the zip can contain more than 65535 files and/or support files greater than 4GB in size.

      The standard zip format has hard limits on file size and count. The Zip64 format extension practically removes these limits and is therefore required for building large zips.

      However, not all Zip readers support the Zip64 extensions. Notably, the ZipInputStream JDK class does not support Zip64 for versions earlier than Java 7. This means you should not enable this property if you are building JARs to be used with Java 6 and earlier runtimes.

    • getMetadataCharset

      @Incubating @Input @Optional public String getMetadataCharset()
      The character set used to encode ZIP metadata like file names. Defaults to the platform's default character set.
      Returns:
      null if using the platform's default character set for ZIP metadata
      Since:
      2.14
    • setMetadataCharset

      @Incubating public void setMetadataCharset(String metadataCharset)
      The character set used to encode ZIP metadata like file names. Defaults to the platform's default character set.
      Parameters:
      metadataCharset - the character set used to encode ZIP metadata like file names
      Since:
      2.14