eachFile(closure) |
Adds an action to be applied to each file as it about to be copied into its destination. The given closure is called with a FileCopyDetails as its parameter. Actions are executed in the order added, and are inherited from the parent spec. |
eachFile(action) |
Adds an action to be applied to each file as it is about to be copied into its destination. The action can change the destination path of the file, filter the contents of the file, or exclude the file from the result entirely. Actions are executed in the order added, and are inherited from the parent spec. |
exclude(excludeSpec) |
Adds an exclude spec. This method may be called multiple times to append new specs.The given closure is passed aFileTreeElement as its parameter. The closure should return true or false. Example: |
exclude(excludes) |
Adds an ANT style exclude pattern. This method may be called multiple times to append new patterns and multiple patterns may be specified in a single call. If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not match any exclude pattern to be processed. |
exclude(excludes) |
Adds an ANT style exclude pattern. This method may be called multiple times to append new patterns and multiple patterns may be specified in a single call. If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not match any exclude pattern to be processed. |
exclude(excludeSpec) |
Adds an exclude spec. This method may be called multiple times to append new specs. If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not match any exclude pattern to be processed. |
expand(properties) |
Expands property references in each file as it is copied. More specifically, each file is transformed using Groovy's SimpleTemplateEngine. This means you can use simple property references, such as$property or propertyinthefile.YoucanalsoincludearbitraryGroovycodeinthefile,suchas{property} in the file. You can also include arbitrary Groovy code in the file, such as propertyinthefile.YoucanalsoincludearbitraryGroovycodeinthefile,suchas{version ?: 'unknown'} or ${classpath*.name.join(' ')} |
[expand](org.gradle.jvm.tasks.Jar.html#org.gradle.jvm.tasks.Jar:expand%28java.util.Map, org.gradle.api.Action%29)(properties, action) |
Expands property references in each file as it is copied. More specifically, each file is transformed using Groovy's SimpleTemplateEngine. This means you can use simple property references, such as$property or propertyinthefile.YoucanalsoincludearbitraryGroovycodeinthefile,suchas{property} in the file. You can also include arbitrary Groovy code in the file, such as propertyinthefile.YoucanalsoincludearbitraryGroovycodeinthefile,suchas{version ?: 'unknown'} or ${classpath*.name.join(' ')}. The template engine can be configured with the provided action. |
[filesMatching](org.gradle.jvm.tasks.Jar.html#org.gradle.jvm.tasks.Jar:filesMatching%28java.lang.Iterable, org.gradle.api.Action%29)(patterns, action) |
Configure the FileCopyDetails for each file whose path matches any of the specified Ant-style patterns. This is equivalent to using eachFile() and selectively applying a configuration based on the file's path. |
[filesMatching](org.gradle.jvm.tasks.Jar.html#org.gradle.jvm.tasks.Jar:filesMatching%28java.lang.String, org.gradle.api.Action%29)(pattern, action) |
Configure the FileCopyDetails for each file whose path matches the specified Ant-style pattern. This is equivalent to using eachFile() and selectively applying a configuration based on the file's path. |
[filesNotMatching](org.gradle.jvm.tasks.Jar.html#org.gradle.jvm.tasks.Jar:filesNotMatching%28java.lang.Iterable, org.gradle.api.Action%29)(patterns, action) |
Configure the FileCopyDetails for each file whose path does not match any of the specified Ant-style patterns. This is equivalent to using eachFile() and selectively applying a configuration based on the file's path. |
[filesNotMatching](org.gradle.jvm.tasks.Jar.html#org.gradle.jvm.tasks.Jar:filesNotMatching%28java.lang.String, org.gradle.api.Action%29)(pattern, action) |
Configure the FileCopyDetails for each file whose path does not match the specified Ant-style pattern. This is equivalent to using eachFile() and selectively applying a configuration based on the file's path. |
filter(closure) |
Adds a content filter based on the provided closure. The Closure will be called with each line (stripped of line endings) and should return a String to replace the line or null to remove the line. If every line is removed, the result will be an empty file, not an absent one. |
filter(filterType) |
Adds a content filter to be used during the copy. Multiple calls to filter, add additional filters to the filter chain. Each filter should implement java.io.FilterReader. Include org.apache.tools.ant.filters.* for access to all the standard Ant filters. |
[filter](org.gradle.jvm.tasks.Jar.html#org.gradle.jvm.tasks.Jar:filter%28java.util.Map, java.lang.Class%29)(properties, filterType) |
Adds a content filter to be used during the copy. Multiple calls to filter, add additional filters to the filter chain. Each filter should implement java.io.FilterReader. Include org.apache.tools.ant.filters.* for access to all the standard Ant filters. |
filter(transformer) |
Adds a content filter based on the provided transformer. The Closure will be called with each line (stripped of line endings) and should return a String to replace the line or null to remove the line. If every line is removed, the result will be an empty file, not an absent one. |
[from](org.gradle.jvm.tasks.Jar.html#org.gradle.jvm.tasks.Jar:from%28java.lang.Object, groovy.lang.Closure%29)(sourcePath, c) |
Specifies the source files or directories for a copy and creates a child CopySourceSpec. The given source path is evaluated as per Project.files(java.lang.Object[]) . |
[from](org.gradle.jvm.tasks.Jar.html#org.gradle.jvm.tasks.Jar:from%28java.lang.Object, org.gradle.api.Action%29)(sourcePath, configureAction) |
Specifies the source files or directories for a copy and creates a child CopySpec. The given source path is evaluated as per Project.files(java.lang.Object[]) . |
from(sourcePaths) |
Specifies source files or directories for a copy. The given paths are evaluated as per Project.files(java.lang.Object[]). |
include(includeSpec) |
Adds an include spec. This method may be called multiple times to append new specs. The given closure is passed aFileTreeElement as its parameter. If includes are not provided, then all files in this container will be included. If includes are provided, then a file must match at least one of the include patterns or specs to be included. |
include(includes) |
Adds an ANT style include pattern. This method may be called multiple times to append new patterns and multiple patterns may be specified in a single call. If includes are not provided, then all files in this container will be included. If includes are provided, then a file must match at least one of the include patterns to be processed. |
include(includes) |
Adds an ANT style include pattern. This method may be called multiple times to append new patterns and multiple patterns may be specified in a single call. If includes are not provided, then all files in this container will be included. If includes are provided, then a file must match at least one of the include patterns to be processed. |
include(includeSpec) |
Adds an include spec. This method may be called multiple times to append new specs. If includes are not provided, then all files in this container will be included. If includes are provided, then a file must match at least one of the include patterns or specs to be included. |
into(destPath) |
Specifies the destination directory *inside* the archive for the files. The destination is evaluated as per Project.file(java.lang.Object). Don't mix it up with AbstractArchiveTask.getDestinationDirectory() which specifies the output directory for the archive. |
[into](org.gradle.jvm.tasks.Jar.html#org.gradle.jvm.tasks.Jar:into%28java.lang.Object, groovy.lang.Closure%29)(destPath, configureClosure) |
Creates and configures a child CopySpec with a destination directory *inside* the archive for the files. The destination is evaluated as per Project.file(java.lang.Object). Don't mix it up with AbstractArchiveTask.getDestinationDirectory() which specifies the output directory for the archive. |
[into](org.gradle.jvm.tasks.Jar.html#org.gradle.jvm.tasks.Jar:into%28java.lang.Object, org.gradle.api.Action%29)(destPath, copySpec) |
Creates and configures a child CopySpec with a destination directory *inside* the archive for the files. The destination is evaluated as per Project.file(java.lang.Object). Don't mix it up with AbstractArchiveTask.getDestinationDirectory() which specifies the output directory for the archive. |
manifest(configureClosure) |
Configures the manifest for this JAR archive. |
manifest(configureAction) |
Configures the manifest for this JAR archive. |
metaInf(configureClosure) |
Adds content to this JAR archive's META-INF directory. |
metaInf(configureAction) |
Adds content to this JAR archive's META-INF directory. |
rename(closure) |
Renames a source file. The closure will be called with a single parameter, the name of the file. The closure should return a String object with a new target name. The closure may return null, in which case the original name will be used. |
[rename](org.gradle.jvm.tasks.Jar.html#org.gradle.jvm.tasks.Jar:rename%28java.lang.String, java.lang.String%29)(sourceRegEx, replaceWith) |
Renames files based on a regular expression. Uses java.util.regex type of regular expressions. Note that the replace string should use the '$1' syntax to refer to capture groups in the source regular expression. Files that do not match the source regular expression will be copied with the original name. |
[rename](org.gradle.jvm.tasks.Jar.html#org.gradle.jvm.tasks.Jar:rename%28java.util.regex.Pattern, java.lang.String%29)(sourceRegEx, replaceWith) |
Renames files based on a regular expression. See [CopyProcessingSpec.rename(java.lang.String, java.lang.String)](../javadoc/org/gradle/api/file/CopyProcessingSpec.html#rename-java.lang.String, java.lang.String-). |
rename(renamer) |
Renames a source file. The function will be called with a single parameter, the name of the file. The function should return a new target name. The function may return null, in which case the original name will be used. |
with(sourceSpecs) |
Adds the given specs as a child of this spec. |