Comparable<Task>
, org.gradle.api.internal.DynamicObjectAware
, org.gradle.api.internal.TaskInternal
, ExtensionAware
, Task
, SignatureSpec
, Configurable<Task>
@DisableCachingByDefault(because="Not made cacheable, yet") public class Sign extends DefaultTask implements SignatureSpec
The task produces Signature
The signature objects are created with defaults and using this tasks signatory and signature type.
Task.Namer
TASK_ACTION, TASK_CONSTRUCTOR_ARGS, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
Constructor | Description |
---|---|
Sign() |
Modifier and Type | Method | Description |
---|---|---|
void |
generate() |
Generates the signature files.
|
protected org.gradle.api.internal.CollectionCallbackActionDecorator |
getCallbackActionDecorator() |
Required for decorating reports container callbacks for tracing user code application.
|
protected org.gradle.api.internal.file.FileCollectionFactory |
getFileCollectionFactory() |
|
FileCollection |
getFilesToSign() |
All of the files that will be signed by this task.
|
Signatory |
getSignatory() |
Returns the signatory for this signing task.
|
FileCollection |
getSignatureFiles() |
All of the signature files that will be generated by this operation.
|
DomainObjectSet<Signature> |
getSignatures() |
The signatures generated by this task.
|
Map<String,Signature> |
getSignaturesByKey() |
The signatures generated by this task mapped by a unique key used for up-to-date checking.
|
SignatureType |
getSignatureType() |
The signature representation that will be created.
|
Signature |
getSingleSignature() |
Returns the single signature generated by this task.
|
boolean |
isRequired() |
Whether or not this task should fail if no signatory or signature type are configured at generation time.
|
void |
required(boolean required) |
Change whether or not this task should fail if no signatory or signature type are configured at the time of generation.
|
void |
setRequired(boolean required) |
Whether or not it is required that this signature be generated.
|
void |
setSignatory(Signatory signatory) |
Sets the signatory that will be signing the input.
|
void |
setSignatureType(SignatureType signatureType) |
Sets the signature representation that the signatures will be produced as.
|
void |
sign(File... files) |
Configures the task to sign each of the given files
|
void |
sign(String classifier,
File... files) |
Configures the task to sign each of the given artifacts, using the given classifier as the classifier for the resultant signature publish artifact.
|
void |
sign(Configuration... configurations) |
Configures the task to sign every artifact of the given configurations
|
void |
sign(PublishArtifact... publishArtifacts) |
Configures the task to sign each of the given artifacts
|
void |
sign(Publication... publications) |
Configures the task to sign every artifact of the given publications
|
void |
sign(Task... tasks) |
Configures the task to sign the archive produced for each of the given tasks (which must be archive tasks).
|
void |
signatory(Signatory signatory) |
Changes the signatory of the signatures.
|
compareTo, configure, dependsOn, doFirst, doFirst, doFirst, doLast, doLast, doLast, finalizedBy, getActions, getAnt, getDependsOn, getDescription, getDestroyables, getDidWork, getEnabled, getExtensions, getFinalizedBy, getGroup, getInputs, getLocalState, getLogger, getLogging, getMustRunAfter, getName, getOutputs, getPath, getProject, getShouldRunAfter, getState, getTaskDependencies, getTemporaryDir, getTimeout, hasProperty, mustRunAfter, onlyIf, onlyIf, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setFinalizedBy, setGroup, setMustRunAfter, setOnlyIf, setOnlyIf, setProperty, setShouldRunAfter, shouldRunAfter, usesService
appendParallelSafeAction, doNotTrackState, getAsDynamicObject, getConvention, getIdentityPath, getImpliesSubProjects, getLifecycleDependencies, getOnlyIf, getReasonNotToTrackState, getReasonTaskIsIncompatibleWithConfigurationCache, getRequiredServices, getServices, getSharedResources, getStandardOutputCapture, getTaskActions, getTaskIdentity, getTemporaryDirFactory, hasTaskActions, injectIntoNewInstance, isCompatibleWithConfigurationCache, isEnabled, isHasCustomActions, notCompatibleWithConfigurationCache, prependParallelSafeAction, setImpliesSubProjects
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
doNotTrackState, getConvention, notCompatibleWithConfigurationCache
public void sign(Task... tasks)
public void sign(PublishArtifact... publishArtifacts)
public void sign(File... files)
public void sign(String classifier, File... files)
public void sign(Configuration... configurations)
public void sign(Publication... publications)
public void signatory(Signatory signatory)
public void required(boolean required)
public void generate()
@Internal public DomainObjectSet<Signature> getSignatures()
public Map<String,Signature> getSignaturesByKey()
@Internal public Signature getSingleSignature()
IllegalStateException
- if there is not exactly one signature.@Inject protected org.gradle.api.internal.file.FileCollectionFactory getFileCollectionFactory()
@Internal public FileCollection getFilesToSign()
@Internal public FileCollection getSignatureFiles()
@Optional public SignatureType getSignatureType()
SignatureSpec
getSignatureType
in interface SignatureSpec
null
if none specified.public void setSignatureType(SignatureType signatureType)
SignatureSpec
setSignatureType
in interface SignatureSpec
signatureType
- the signature type to use@Optional public Signatory getSignatory()
getSignatory
in interface SignatureSpec
public void setSignatory(Signatory signatory)
SignatureSpec
setSignatory
in interface SignatureSpec
signatory
- The signatory@Input public boolean isRequired()
Defaults to true
.
isRequired
in interface SignatureSpec
public void setRequired(boolean required)
SignatureSpec
setRequired
in interface SignatureSpec
required
- Whether or not it is required that this signature be generated.SignatureSpec.isRequired()
@Inject protected org.gradle.api.internal.CollectionCallbackActionDecorator getCallbackActionDecorator()