Class DependentComponentsReport
- java.lang.Object
-
- org.gradle.api.internal.AbstractTask
-
- org.gradle.api.DefaultTask
-
- org.gradle.api.reporting.dependents.DependentComponentsReport
-
- 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 DependentComponentsReport extends DefaultTask
Displays dependent components.
-
-
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_CONSTRUCTOR_ARGS, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
-
-
Constructor Summary
Constructors Constructor Description DependentComponentsReport()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getComponents()Returns the components to generate the report for.protected org.gradle.model.internal.registry.ModelRegistrygetModelRegistry()booleangetShowAll()Should this include both non-buildable and test suites in the report?protected org.gradle.internal.logging.text.StyledTextOutputFactorygetTextOutputFactory()booleanisShowNonBuildable()Should this include non-buildable components in the report?booleanisShowTestSuites()Should this include test suites in the report?voidreport()voidsetComponents(List<String> components)Sets the components to generate the report for.voidsetShowAll(boolean showAll)Set this to include both non buildable components and test suites in the report.voidsetShowNonBuildable(boolean showNonBuildable)voidsetShowTestSuites(boolean showTestSuites)-
Methods inherited from class org.gradle.api.DefaultTask
newInputDirectory, newInputFile, newOutputDirectory, newOutputFile
-
Methods inherited from class org.gradle.api.internal.AbstractTask
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
-
-
-
-
Method Detail
-
isShowNonBuildable
@Console public boolean isShowNonBuildable()
Should this include non-buildable components in the report?
-
setShowNonBuildable
public void setShowNonBuildable(boolean showNonBuildable)
-
isShowTestSuites
@Console public boolean isShowTestSuites()
Should this include test suites in the report?
-
setShowTestSuites
public void setShowTestSuites(boolean showTestSuites)
-
getShowAll
@Console public boolean getShowAll()
Should this include both non-buildable and test suites in the report?
-
setShowAll
public void setShowAll(boolean showAll)
Set this to include both non buildable components and test suites in the report.
-
getComponents
@Console public List<String> getComponents()
Returns the components to generate the report for. Defaults to all components of this project.- Returns:
- the components.
-
setComponents
public void setComponents(List<String> components)
Sets the components to generate the report for.- Parameters:
components- the components.
-
getTextOutputFactory
@Inject protected org.gradle.internal.logging.text.StyledTextOutputFactory getTextOutputFactory()
-
getModelRegistry
@Inject protected org.gradle.model.internal.registry.ModelRegistry getModelRegistry()
-
report
public void report()
-
-