Class ReportingExtension
java.lang.Object
org.gradle.api.reporting.ReportingExtension
A project extension named "reporting" that provides basic reporting settings and utilities.
Example usage:
reporting {
baseDir "$buildDir/our-reports"
}
When implementing a task that produces reports, the location of where to generate reports should be obtained
via the file(String) method of this extension.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe default name of the base directory for all reports, relative toProject.getBuildDir()("reports").static final StringThe name of this extension (""reporting"") -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCreates a file object for the given path, relative togetBaseDir().The base directory for all reportsReturns base directory property to use for all reports.voidsetBaseDir(File baseDir) Sets the base directory to use for all reportsvoidsetBaseDir(Object baseDir) Sets the base directory to use for all reports
-
Field Details
-
NAME
-
DEFAULT_REPORTS_DIR_NAME
The default name of the base directory for all reports, relative toProject.getBuildDir()("reports").- See Also:
-
-
Constructor Details
-
ReportingExtension
-
-
Method Details
-
getBaseDir
The base directory for all reportsThis value can be changed, so any files derived from this should be calculated on demand.
- Returns:
- The base directory for all reports
-
setBaseDir
Sets the base directory to use for all reports- Parameters:
baseDir- The base directory to use for all reports- Since:
- 4.0
-
setBaseDir
Sets the base directory to use for all reportsThe value will be converted to a
Fileon demand viaProject.file(Object).- Parameters:
baseDir- The base directory to use for all reports
-
getBaseDirectory
Returns base directory property to use for all reports.- Since:
- 4.4
-
file
Creates a file object for the given path, relative togetBaseDir().The reporting base dir can be changed, so users of this method should use it on demand where appropriate.
- Parameters:
path- the relative path- Returns:
- a file object at the given path relative to
getBaseDir()
-
getApiDocTitle
-