| Type | Name and description |
|---|---|
AnalyzerExtension |
analyzerExtensionConfiguration for the analyzers. |
java.lang.Boolean |
autoUpdateSets whether auto-updating of the NVD CVE/CPE data is enabled. |
java.lang.Float |
failBuildOnCVSSSpecifies if the build should be failed if a CVSS score above a specified level is identified. |
Format |
formatThe report format to be generated (HTML, XML, VULN, ALL). |
java.lang.String |
hintsFileThe path to the hints file. |
java.lang.String |
outputDirectoryThe directory where the reports will be written. |
java.util.List<java.lang.String> |
scanConfigurationsNames of the configurations to scan. |
java.lang.Boolean |
showSummaryDisplays a summary of the findings. |
java.util.List<java.lang.String> |
skipConfigurationsNames of the configurations to skip when scanning. |
java.lang.Boolean |
skipTestGroupsWhen set to true configurations that are considered a test configuration will not be included in the analysis. |
java.lang.String |
suppressionFileThe path to the suppression file. |
| Constructor and description |
|---|
CheckExtension
(org.gradle.api.Project project) |
| Methods inherited from class | Name |
|---|---|
class java.lang.Object |
java.lang.Object#wait(), java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Configuration for the analyzers.
Sets whether auto-updating of the NVD CVE/CPE data is enabled.
Specifies if the build should be failed if a CVSS score above a specified level is identified. The default is 11 which means since the CVSS scores are 0-10, by default the build will never fail.
The report format to be generated (HTML, XML, VULN, ALL). This configuration option has no affect if using this within the Site plugin unless the externalReport is set to true. The default is HTML.
The path to the hints file.
The directory where the reports will be written. Defaults to 'build/reports'.
Names of the configurations to scan. This is mutually exclusive with the skipConfigurations property.
Displays a summary of the findings. Defaults to true.
Names of the configurations to skip when scanning. This is mutually exclusive with the scanConfigurations property.
When set to true configurations that are considered a test configuration will not be included in the analysis. A configuration is considered a test configuration if and only if any of the following conditions holds:
The path to the suppression file.
Groovy Documentation