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>
Jar
public class Jar extends Zip
Task.Namer
Modifier and Type | Field | Description |
---|---|---|
static String |
DEFAULT_EXTENSION |
ZIP_EXTENSION
TASK_ACTION, TASK_CONSTRUCTOR_ARGS, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
Constructor | Description |
---|---|
Jar() |
Modifier and Type | Method | Description |
---|---|---|
Manifest |
getManifest() |
Returns the manifest for this JAR archive.
|
String |
getManifestContentCharset() |
The character set used to encode the manifest content.
|
String |
getMetadataCharset() |
The character set used to encode JAR metadata like file names.
|
CopySpec |
getMetaInf() |
|
Jar |
manifest(Closure<?> configureClosure) |
Configures the manifest for this JAR archive.
|
Jar |
manifest(Action<? super Manifest> configureAction) |
Configures the manifest for this JAR archive.
|
CopySpec |
metaInf(Closure<?> configureClosure) |
Adds content to this JAR archive's META-INF directory.
|
CopySpec |
metaInf(Action<? super CopySpec> configureAction) |
Adds content to this JAR archive's META-INF directory.
|
void |
setManifest(Manifest manifest) |
Sets the manifest for this JAR archive.
|
void |
setManifestContentCharset(String manifestContentCharset) |
The character set used to encode the manifest content.
|
void |
setMetadataCharset(String metadataCharset) |
The character set used to encode JAR metadata like file names.
|
createCopyAction, getCompressor, getEntryCompression, isZip64, setEntryCompression, setZip64
createCopyActionExecuter, getAppendix, getArchiveAppendix, getArchiveBaseName, getArchiveClassifier, getArchiveExtension, getArchiveFile, getArchiveFileName, getArchiveName, getArchivePath, getArchiveVersion, getBaseName, getClassifier, getDestinationDir, getDestinationDirectory, getExtension, getVersion, into, into, into, isPreserveFileTimestamps, isReproducibleFileOrder, setAppendix, setArchiveName, setBaseName, setClassifier, setDestinationDir, setExtension, setPreserveFileTimestamps, setReproducibleFileOrder, setVersion
copy, createRootSpec, eachFile, eachFile, exclude, exclude, exclude, exclude, expand, filesMatching, filesMatching, filesNotMatching, filesNotMatching, filter, filter, filter, filter, from, from, from, getDirectoryFileTreeFactory, getDirMode, getDuplicatesStrategy, getExcludes, getFileLookup, getFileMode, getFileResolver, getFileSystem, getFilteringCharset, getIncludeEmptyDirs, getIncludes, getInstantiator, getMainSpec, getRootSpec, getSource, include, include, include, include, isCaseSensitive, rename, rename, rename, rename, setCaseSensitive, setDirMode, setDuplicatesStrategy, setExcludes, setFileMode, setFilteringCharset, setIncludeEmptyDirs, setIncludes, with
conventionMapping, conventionMapping, getConventionMapping
newInputDirectory, newInputFile, newOutputDirectory, newOutputFile
appendParallelSafeAction, compareTo, configure, dependsOn, doFirst, doFirst, doFirst, doLast, doLast, doLast, finalizedBy, getActions, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDestroyables, getDidWork, getEnabled, getExtensions, getFinalizedBy, getGroup, getIdentityPath, getImpliesSubProjects, getInputs, getLocalState, getLogger, getLogging, getMustRunAfter, getName, getOnlyIf, getOutputs, getPath, getProject, getServices, getShouldRunAfter, getStandardOutputCapture, getState, getTaskActions, getTaskDependencies, getTaskIdentity, getTemporaryDir, getTemporaryDirFactory, getTimeout, hasProperty, hasTaskActions, injectIntoNewInstance, isEnabled, isHasCustomActions, mustRunAfter, onlyIf, onlyIf, prependParallelSafeAction, property, replaceLogger, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setFinalizedBy, setGroup, setImpliesSubProjects, setMustRunAfter, setOnlyIf, setOnlyIf, setProperty, setShouldRunAfter, shouldRunAfter, toString
public static final String DEFAULT_EXTENSION
public String getMetadataCharset()
getMetadataCharset
in class Zip
public void setMetadataCharset(String metadataCharset)
setMetadataCharset
in class Zip
metadataCharset
- the character set used to encode JAR metadata like file names@Input public String getManifestContentCharset()
public void setManifestContentCharset(String manifestContentCharset)
manifestContentCharset
- the character set used to encode the manifest contentgetManifestContentCharset()
@Internal public Manifest getManifest()
public void setManifest(Manifest manifest)
manifest
- The manifest. May be null.public Jar manifest(Closure<?> configureClosure)
The given closure is executed to configure the manifest. The Manifest
is passed to the closure as its delegate.
configureClosure
- The closure.public Jar manifest(Action<? super Manifest> configureAction)
The given action is executed to configure the manifest.
configureAction
- The action.public CopySpec metaInf(Closure<?> configureClosure)
The given closure is executed to configure a CopySpec
. The CopySpec
is passed to the closure as its delegate.
configureClosure
- The closure.CopySpec