saker.zip Documentation TaskDoc JavaDoc Packages
Represents an archive entry inclusion for ZIP archive creation. Accepts simple paths, file locations, file collections or may be configured directly. The options is used to include the specified entries from an Archive and add them to the output ZIP archive. Use the Resources field to specify the entries to include, and the TargetDirectory to relocate the entries in the output.
Summary
Fields
ArchiveSpecifies one or more source ZIP archives from where the entries should be included.
CompressionSets the compression that should be used for the included resources.
ResourcesSpecifies one or more wildcard patterns which are used to select the input entries that should be included in the output.
TargetDirectorySpecifies the target directory under which the entries specified should be placed.
Fields
Specifies one or more source ZIP archives from where the entries should be included. The archives can be specified using simple paths, wildcards, file locations or file collections. For each given archive, the specified Resources will be included and added to the result archive under the given TargetDirectory.
Sets the compression that should be used for the included resources.
Collection of WildcardPath
Specifies one or more wildcard patterns which are used to select the input entries that should be included in the output. Each entry in the source Archive will be checked if any of the specified resource wildcards matches its name. If so, then it will be included in the output ZIP with the archive path that is the concatenation of TargetDirectory and the path in the source Archive. If none of the wildcards match an input entry name, it won't be added to the output. If no wildcard patterns are specified, all entries will be included from the source Archive.
Specifies the target directory under which the entries specified should be placed. Any input entry that is matched by this configuration will have their archive paths prepended by the value of this field. The specified path must be forward relative. By default, no target directory is used.