org.gradle.api.publish.ivy.tasks
Class PublishToIvyRepository

java.lang.Object
  extended by org.gradle.api.internal.AbstractTask
      extended by org.gradle.api.DefaultTask
          extended by org.gradle.api.publish.ivy.tasks.PublishToIvyRepository
All Implemented Interfaces:
Comparable<Task>, org.gradle.api.internal.DynamicObjectAware, org.gradle.api.internal.TaskInternal, ExtensionAware, Task, org.gradle.util.Configurable<Task>

@Incubating
public class PublishToIvyRepository
extends DefaultTask

Publishes an IvyPublication to an IvyArtifactRepository.

Since:
1.3

Nested Class Summary
 
Nested classes/interfaces inherited from interface org.gradle.api.Task
Task.Namer
 
Field Summary
 
Fields inherited from interface org.gradle.api.Task
TASK_ACTION, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
 
Constructor Summary
PublishToIvyRepository(org.gradle.api.internal.artifacts.ArtifactPublicationServices publicationServices)
           
 
Method Summary
 IvyPublication getPublication()
          The publication to be published.
 IvyArtifactRepository getRepository()
          The repository to publish to.
 void publish()
           
 void setPublication(IvyPublication publication)
          Sets the publication to be published.
 void setRepository(IvyArtifactRepository repository)
          Sets the repository to publish to.
 
Methods inherited from class org.gradle.api.internal.AbstractTask
addValidator, compareTo, configure, deleteAllActions, dependsOn, dependsOnTaskDidWork, doFirst, doFirst, doLast, doLast, execute, executeWithoutThrowingTaskFailure, getActions, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDidWork, getEnabled, getExecuter, getExtensions, getGroup, getInputs, getLogger, getLogging, getName, getOnlyIf, getOutputs, getPath, getProject, getServices, getStandardOutputCapture, getState, getStateInternal, getTaskDependencies, getTemporaryDir, getTemporaryDirFactory, getValidators, hasProperty, injectIntoNewInstance, isEnabled, leftShift, onlyIf, onlyIf, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setExecuter, setGroup, setName, setOnlyIf, setOnlyIf, setProject, setProperty, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PublishToIvyRepository

@Inject
public PublishToIvyRepository(org.gradle.api.internal.artifacts.ArtifactPublicationServices publicationServices)
Method Detail

getPublication

public IvyPublication getPublication()
The publication to be published.

Returns:
The publication to be published

setPublication

public void setPublication(IvyPublication publication)
Sets the publication to be published.

Parameters:
publication - The publication to be published

getRepository

public IvyArtifactRepository getRepository()
The repository to publish to.

Returns:
The repository to publish to

setRepository

public void setRepository(IvyArtifactRepository repository)
Sets the repository to publish to.

Parameters:
repository - The repository to publish to

publish

public void publish()