Class JacocoDump
- java.lang.Object
- 
- org.gradle.api.internal.AbstractTask
- 
- org.gradle.api.DefaultTask
- 
- org.gradle.testing.jacoco.tasks.JacocoBase
- 
- io.freefair.gradle.plugins.jacoco.tasks.JacocoDump
 
 
 
 
- 
- All Implemented Interfaces:
- Comparable<Task>,- org.gradle.api.internal.DynamicObjectAware,- org.gradle.api.internal.TaskInternal,- ExtensionAware,- Task,- org.gradle.util.Configurable<Task>
 
 public class JacocoDump extends JacocoBase - See Also:
- DumpTask
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.gradle.api.TaskTask.Namer
 
- 
 - 
Field Summary- 
Fields inherited from interface org.gradle.api.TaskTASK_ACTION, TASK_CONSTRUCTOR_ARGS, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
 
- 
 - 
Constructor SummaryConstructors Constructor Description JacocoDump(WorkerExecutor workerExecutor)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddump()Property<String>getAddress()IP Address or hostname to connect to.Property<Boolean>getAppend()trueif the destination file it to be appended to.RegularFilePropertygetDestfile()Sets the location of the execution data file to write.Property<Boolean>getDump()Sets whether execution data should be downloaded from the remote host.Property<Integer>getPort()Port number to connect to.Property<Boolean>getReset()Sets whether a reset command should be sent after the execution data has been dumped.Property<Integer>getRetryCount()Number of retries which the goal will attempt to establish a connection.WorkerExecutorgetWorkerExecutor()- 
Methods inherited from class org.gradle.testing.jacoco.tasks.JacocoBasegetJacocoClasspath, setJacocoClasspath
 - 
Methods inherited from class org.gradle.api.DefaultTasknewInputDirectory, newInputFile, newOutputDirectory, newOutputFile
 - 
Methods inherited from class org.gradle.api.internal.AbstractTaskappendParallelSafeAction, 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
 
- 
 
- 
- 
- 
Constructor Detail- 
JacocoDump@Inject public JacocoDump(WorkerExecutor workerExecutor) 
 
- 
 - 
Method Detail- 
dumppublic void dump() 
 - 
getWorkerExecutorpublic WorkerExecutor getWorkerExecutor() 
 - 
getDumppublic Property<Boolean> getDump() Sets whether execution data should be downloaded from the remote host. Defaults totrue- See Also:
- DumpTask.setDump(boolean)
 
 - 
getResetpublic Property<Boolean> getReset() Sets whether a reset command should be sent after the execution data has been dumped. Defaults tofalse- See Also:
- DumpTask.setReset(boolean)
 
 - 
getRetryCountpublic Property<Integer> getRetryCount() Number of retries which the goal will attempt to establish a connection. This can be used to wait until the target JVM is successfully launched.- See Also:
- DumpTask.setRetryCount(int)
 
 - 
getAddresspublic Property<String> getAddress() IP Address or hostname to connect to. Defaults tolocalhost- See Also:
- DumpTask.setAddress(String)
 
 - 
getPortpublic Property<Integer> getPort() Port number to connect to. Default is6300- See Also:
- DumpTask.setPort(int)
 
 - 
getDestfilepublic RegularFileProperty getDestfile() Sets the location of the execution data file to write. This parameter is required when dump istrue.- See Also:
- DumpTask.setDestfile(File)
 
 
- 
 
-