The following plugin provides functionality available through
Pipeline-compatible steps. Read more about how to integrate steps into your
Pipeline in the
Steps
section of the
Pipeline Syntax
page.
For a list of other such plugins, see the
Pipeline Steps Reference
page.
Warnings Plugin
publishIssues
: Publish issues created by a static analysis scan
issues
- Type:
class io.jenkins.plugins.analysis.core.steps.AnnotatedReport
checksAnnotationScope
(optional)
- Values:
ALL
, NEW
, MODIFIED
, SKIP
failOnError : boolean
(optional)
If there are errors while scanning the console log or files for issues (e.g., file pattern matches no files, source files could not be copied, etc.) then the warning plugin will show these errors in a separate view but does not alter the build state. If you would rather like to fail the step on such errors, please tick this checkbox.
healthy : int
(optional)
The healthy threshold defines the limit of warnings for a healthy result: A build is considered as 100% healthy when the number of issues is less than the specified threshold. Values less or equal zero are ignored. So if you want to have a healthy build (i.e., 100%) only for zero warnings, then set this field to 1.
icon : String
(optional)
You can override the icon of the results. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID will be used.
ignoreQualityGate : boolean
(optional)
One important feature of the Warnings Plugin is the classification of issues as new, outstanding and fixed. To compute this classification, the plugin requires a reference build (baseline). New, fixed, and outstanding issues are then computed by comparing the issues in the current build and in the baseline.
If this option is set, only issues that have been introduced in the current build are marked as new. Previously new issues in older builds will be converted to outstanding issues. I.e., if someone starts a new build manually (without source code changes), then no new issues will be in the job anymore.
By default, this option is disabled: then only a build is selected as reference that passed all quality gates. As soon as a build fails a quality gate, the reference will be frozen until all new issues are resolved again. That means, that new issues will be aggregated from build to build until the original reason for the failure, and all those additional new issues have been resolved. This helps much more to keep your project clean: as soon as there are issues, Jenkins will mark all builds as unstable until the issues have been resolved.
minimumSeverity : String
(optional)
Select which warning severities should be considered when evaluating the build health. The following options are supported:
-
ERROR
-
Only consider errors
-
WARNING_HIGH
-
Consider errors and warnings with high severity
-
WARNING_NORMAL
-
Consider all severities but not warnings with severity low
-
WARNING_LOW
-
Consider all severities.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name will be used.
publishAllIssues : boolean
(optional)
If this option is checked, then the plugin will publish new and outstanding issues to SCM provider platforms. By default, the plugin will only publish new issues.
qualityGates
(optional)
Array / List of Nested Object
type
In order to simplify the user interface you can select the property that will be compared with the specified threshold. Basically, three different properties are available:
-
Total
-
Selects the total number of issues in the current build.
-
New
-
Selects the total number of new issues in the current build with respect to the reference build. New issues will be calculated by a sophisticated algorithm that tries to track issues from build to build, even if the source code has been modified. Note that this algorithm sometimes detects outstanding warnings as new, e.g., if a source file has been refactored heavily.
-
Delta
-
Selects the difference between the total number of issues in the current build subtracted by the total number of issues in the reference build. This is a simple subtraction, so if you have a build that adds a new warning and removes a completely different warning, then the result will be zero.
Additionally, you can select to choose all issues, or issues of a given severity only (error, high, normal or low).
- Values:
TOTAL
, TOTAL_ERROR
, TOTAL_HIGH
, TOTAL_NORMAL
, TOTAL_LOW
, TOTAL_MODIFIED
, NEW
, NEW_ERROR
, NEW_HIGH
, NEW_NORMAL
, NEW_LOW
, NEW_MODIFIED
, DELTA
, DELTA_ERROR
, DELTA_HIGH
, DELTA_NORMAL
, DELTA_LOW
criticality
(optional)
When a quality gate has been missed, this property determines whether the result of the associated step or the overall build will be marked as unstable or failure. The following enum values are possible for freestyle jobs:
-
UNSTABLE
-
Set the step and build status to unstable if the quality gate has been missed.
-
FAILURE
-
Fail the step and build if the quality gate has been missed.
For Pipelines two additional fine-grained options are available, that allow setting the status of the step without touching the overall build status:
-
NOTE
-
Set the step to unstable if the quality gate has been missed.
-
ERROR
-
Fail the step if the quality gate has been missed.
- Values:
NOTE
, UNSTABLE
, ERROR
, FAILURE
integerThreshold : int
(optional)
threshold : double
(optional)
The threshold defines the minimum number of warnings that will miss the quality gate. Values less or equal zero are ignored. So if you want to fail a build that has one warning, set this field to 1.
unstable : boolean
(optional)
quiet : boolean
(optional)
Quiet output to the console log: do not write logging messages to the console log. All logging messages will still be visible in the messages view of the warnings plugin.
scm : String
(optional)
Specify the key of your repository (substring is sufficient) if you are using multiple SCMs in your job. When your job is composed of several SCM checkouts (modules, pipeline libraries, etc.) then Jenkins stores all those repositories in an unsorted way.
skipDeltaCalculation : boolean
(optional)
If this option is unchecked, then the plugin analyzes the code changes between the current build and the reference build. Currently, this feature is only available for Git and requires the
git-forensics plugin to be installed. Based on this delta report, issues are then classified as new or outstanding. Only issues that are part of the obtained diff will be marked as new. If this operation slows down your build, you can use this option to deactivate this feature.
skipPublishingChecks : boolean
(optional)
If this option is unchecked, then the plugin automatically publishes the issues to corresponding SCM hosting platforms. For example, if you are using this feature for a GitHub organization project, the warnings will be published to GitHub through the Checks API. If this operation slows down your build or you don't want to publish the warnings to SCM platforms, you can use this option to deactivate this feature.
sourceCodeEncoding : String
(optional)
In order to correctly show all your affected source code files in the detail views, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty then the default encoding of the platform will be used. This might work but is not recommended.
trendChartType
(optional)
If there is more than one static analysis result available then an aggregation trend chart will be shown on the project page that shows the analysis results in a single trend chart. You can choose the position of this aggregation trend:
-
AGGREGATION_TOOLS
-
The aggregation trend is shown before all other analysis tool trend charts.
-
TOOLS_AGGREGATION
-
The aggregation trend is shown after all other analysis tool trend charts.
-
TOOLS_ONLY
-
The aggregation trend is not shown, only the analysis tool trend charts are shown.
-
AGGREGATION_ONLY
-
The aggregation trend is only shown, no other analysis tool trend charts are shown.
-
NONE
-
Neither the aggregation trend nor analysis tool trend charts are shown.
- Values:
AGGREGATION_TOOLS
, TOOLS_AGGREGATION
, TOOLS_ONLY
, AGGREGATION_ONLY
, NONE
unhealthy : int
(optional)
The unhealthy threshold defines the limit of warnings for an unhealthy result: A build is considered as unhealthy (i.e. 0% health) when the number of issues is greater than the specified threshold. Values less or equal zero are ignored. So if you want to have a build health of 0% starting with 10 issues, then set this field to 9.
recordIssues
: Record compiler warnings and static analysis results
aggregatingResults : boolean
(optional)
By default, each static analysis result will be recorded as a separate result that is presented as an individual Jenkins Action with separate UI and dashboard. If you rather prefer aggregation of the results into a single result (i.e., single Jenkins Action), then activate this check box. You still can see the distribution of issues grouped by static analysis tool in the UI.
checksAnnotationScope
(optional)
- Values:
ALL
, NEW
, MODIFIED
, SKIP
enabledForFailure : boolean
(optional)
By default, static analysis results are only recorded for stable or unstable builds, but not for failed builds: analysis results might be inaccurate if the build failed. If recording should be enabled for failed builds as well then activate this check box.
failOnError : boolean
(optional)
If there are errors while scanning the console log or files for issues (e.g., file pattern matches no files, source files could not be copied, etc.) then the warning plugin will show these errors in a separate view but does not alter the build state. If you would rather like to fail the step on such errors, please tick this checkbox.
filters
(optional)
The created report of issues can be filtered afterwards. You can specify an arbitrary number of include or exclude filters. Currently, there is support for filtering issues by module name, package or namespace name, file name, category or type. Include filters will be combined with or
, exclude filters with and
. If no filter is defined, then all issues will be published. Filters with empty regular expression will be ignored.
Array / List of Nested Choice of Objects
excludeCategory
excludeFile
excludeMessage
excludeModule
excludePackage
excludeType
includeCategory
includeFile
includeMessage
includeModule
includePackage
includeType
healthy : int
(optional)
The healthy threshold defines the limit of warnings for a healthy result: A build is considered as 100% healthy when the number of issues is less than the specified threshold. Values less or equal zero are ignored. So if you want to have a healthy build (i.e., 100%) only for zero warnings, then set this field to 1.
icon : String
(optional)
You can override the icon of the results. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID will be used.
ignoreQualityGate : boolean
(optional)
One important feature of the Warnings Plugin is the classification of issues as new, outstanding and fixed. To compute this classification, the plugin requires a reference build (baseline). New, fixed, and outstanding issues are then computed by comparing the issues in the current build and in the baseline.
If this option is set, only issues that have been introduced in the current build are marked as new. Previously new issues in older builds will be converted to outstanding issues. I.e., if someone starts a new build manually (without source code changes), then no new issues will be in the job anymore.
By default, this option is disabled: then only a build is selected as reference that passed all quality gates. As soon as a build fails a quality gate, the reference will be frozen until all new issues are resolved again. That means, that new issues will be aggregated from build to build until the original reason for the failure, and all those additional new issues have been resolved. This helps much more to keep your project clean: as soon as there are issues, Jenkins will mark all builds as unstable until the issues have been resolved.
minimumSeverity : String
(optional)
Select which warning severities should be considered when evaluating the build health. The following options are supported:
-
ERROR
-
Only consider errors
-
WARNING_HIGH
-
Consider errors and warnings with high severity
-
WARNING_NORMAL
-
Consider all severities but not warnings with severity low
-
WARNING_LOW
-
Consider all severities.
name : String
(optional)
You can override the display name of the tool. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name will be used.
publishAllIssues : boolean
(optional)
If this option is checked, then the plugin will publish new and outstanding issues to SCM provider platforms. By default, the plugin will only publish new issues.
qualityGates
(optional)
Array / List of Nested Object
type
In order to simplify the user interface you can select the property that will be compared with the specified threshold. Basically, three different properties are available:
-
Total
-
Selects the total number of issues in the current build.
-
New
-
Selects the total number of new issues in the current build with respect to the reference build. New issues will be calculated by a sophisticated algorithm that tries to track issues from build to build, even if the source code has been modified. Note that this algorithm sometimes detects outstanding warnings as new, e.g., if a source file has been refactored heavily.
-
Delta
-
Selects the difference between the total number of issues in the current build subtracted by the total number of issues in the reference build. This is a simple subtraction, so if you have a build that adds a new warning and removes a completely different warning, then the result will be zero.
Additionally, you can select to choose all issues, or issues of a given severity only (error, high, normal or low).
- Values:
TOTAL
, TOTAL_ERROR
, TOTAL_HIGH
, TOTAL_NORMAL
, TOTAL_LOW
, TOTAL_MODIFIED
, NEW
, NEW_ERROR
, NEW_HIGH
, NEW_NORMAL
, NEW_LOW
, NEW_MODIFIED
, DELTA
, DELTA_ERROR
, DELTA_HIGH
, DELTA_NORMAL
, DELTA_LOW
criticality
(optional)
When a quality gate has been missed, this property determines whether the result of the associated step or the overall build will be marked as unstable or failure. The following enum values are possible for freestyle jobs:
-
UNSTABLE
-
Set the step and build status to unstable if the quality gate has been missed.
-
FAILURE
-
Fail the step and build if the quality gate has been missed.
For Pipelines two additional fine-grained options are available, that allow setting the status of the step without touching the overall build status:
-
NOTE
-
Set the step to unstable if the quality gate has been missed.
-
ERROR
-
Fail the step if the quality gate has been missed.
- Values:
NOTE
, UNSTABLE
, ERROR
, FAILURE
integerThreshold : int
(optional)
threshold : double
(optional)
The threshold defines the minimum number of warnings that will miss the quality gate. Values less or equal zero are ignored. So if you want to fail a build that has one warning, set this field to 1.
unstable : boolean
(optional)
quiet : boolean
(optional)
Quiet output to the console log: do not write logging messages to the console log. All logging messages will still be visible in the messages view of the warnings plugin.
scm : String
(optional)
Specify the key of your repository (substring is sufficient) if you are using multiple SCMs in your job. When your job is composed of several SCM checkouts (modules, pipeline libraries, etc.) then Jenkins stores all those repositories in an unsorted way.
skipBlames : boolean
(optional)
If this option is unchecked, then the plugin automatically shows what revision and author (name and email) last modified the lines of the affected files that contain issues. If this operation slows down your build, or you don't want to publish sensitive user data, you can use this option to deactivate this feature.
skipDeltaCalculation : boolean
(optional)
If this option is unchecked, then the plugin analyzes the code changes between the current build and the reference build. Currently, this feature is only available for Git and requires the
git-forensics plugin to be installed. Based on this delta report, issues are then classified as new or outstanding. Only issues that are part of the obtained diff will be marked as new. If this operation slows down your build, you can use this option to deactivate this feature.
skipPostProcessing : boolean
(optional)
If this option is unchecked, then the plugin automatically resolves absolute paths, fingerprints, package and module names from the source files in the workspace. If this operation slows down your build, you can use this option to deactivate this feature.
skipPublishingChecks : boolean
(optional)
If this option is unchecked, then the plugin automatically publishes the issues to corresponding SCM hosting platforms. For example, if you are using this feature for a GitHub organization project, the warnings will be published to GitHub through the Checks API. If this operation slows down your build or you don't want to publish the warnings to SCM platforms, you can use this option to deactivate this feature.
sourceCodeEncoding : String
(optional)
In order to correctly show all your affected source code files in the detail views, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty then the default encoding of the platform will be used. This might work but is not recommended.
sourceCodeRetention
(optional)
Select the strategy that should be used to store the affected source code files. Storing the affected source code files along with the issues consumes a lot of space on your hard disk for large projects. So if your server has not enough free space available to store the sources for all builds, it might make more sense to store only the sources of the last build. In this case, the plugin will automatically discard old results before the new sources are stored. If you do not need the source files at all, you can deactivate the storing of source code files. The following options are supported:
-
NEVER
-
Never store source code files.
-
LAST_BUILD
-
Store source code files of the last build, delete older artifacts.
-
EVERY_BUILD
-
Store source code files for all builds, never delete those files automatically.
-
MODIFIED
-
Store only changed source code files for all builds, never delete those files automatically.
- Values:
NEVER
, LAST_BUILD
, EVERY_BUILD
, MODIFIED
sourceDirectories
(optional)
Some plugins copy source code files to Jenkins' build folder so that these files can be rendered in the user interface together with build results (coverage, warnings, etc.). If these files are not part of the workspace of a build then Jenkins will not show them by default: otherwise sensitive files could be shown by accident. You can provide a list of additional source code directories that are allowed to be shown in Jenkins user interface here. Note, that such a directory must be an absolute path on the agent that executes the build.
Array / List of Nested Object
path : String
Select the path to your source code files. This plugin copies source code files to Jenkins' build folder so that these files can be rendered in the user interface together with the plugin results. If these files are referenced with relative paths then they cannot be found by the plugin. In these cases you need to specify one or more relative paths within the workspace where the plugin can locate them. Alternatively, you can also specify absolute paths if the source code files are stored outside the workspace (in a directory on the agent). All absolute paths must be additionally approved by an administrator in Jenkins' global configuration page.
tool
(optional)
For each static analysis tool a dedicated parser or scanner will be used to read report files or produce issues in any other way. If your tool is not yet supported you can define a new Groovy based parser in Jenkins system configuration. You can reference this new parser afterwards when you select the tool 'Groovy Parser'. Additionally, you provide a new parser within a new small plug-in. If the parser is useful for other teams as well please share it and provide pull requests for the
Warnings Next Generation Plug-in and the
Analysis Parsers Library.
Nested Choice of Objects
acuCobol
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ajc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
androidLintParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ansibleLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
aquaScanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
armCc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
$class: 'AstreeTool'
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
axivionSuite
basedir : String
(optional)
credentialsId : String
(optional)
icon : String
(optional)
id : String
(optional)
ignoreSuppressedOrJustified : boolean
(optional)
name : String
(optional)
namedFilter : String
(optional)
projectUrl : String
(optional)
bluepearl
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
brakeman
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
buckminster
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cadence
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cargo
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ccm
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
checkStyle
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clair
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clang
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clangAnalyzer
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clangTidy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cmake
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeAnalysis
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeChecker
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeGeneratorParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeNarc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
coolflux
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cpd
highThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as high severity warnings.
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
normalThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as normal severity warnings. All warnings with less duplicated lines are considered as low severity warnings.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cppCheck
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cppLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
CrossCoreEmbeddedStudioParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cssLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dscanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dart
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
detekt
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
diabC
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
docFx
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dockerLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
doxygen
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
drMemory
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dupFinder
highThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as high severity warnings.
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
normalThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as normal severity warnings. All warnings with less duplicated lines are considered as low severity warnings.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
eclipse
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
embeddedEngineerParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
erlc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
errorProne
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
esLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
findBugs
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
useRankAsPriority : boolean
(optional)
flake8
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
flawfinder
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
flexSdk
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
fxcop
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gcc3
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gcc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gendarme
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ghsMulti
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gnat
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gnuFortran
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
goLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
goVet
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
groovyScript
parserId : String
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
grype
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
hadoLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
iar
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
iarCstat
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ibLinter
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ideaInspection
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
infer
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
intel
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
invalids
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
junitParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
java
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
javaDoc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
jcReport
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
jsHint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
jsLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
klocWork
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
kotlin
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ktLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
mavenConsole
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
modelsim
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
metrowerksCodeWarrior
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
msBuild
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
myPy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
nagFortran
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
oelintAdv
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
otDockerLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
taskScanner
owaspDependencyCheck
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
PVSStudio
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
parasoftFindings
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
localSettingsPath : String
(optional)
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pcLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pep8
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
perforce
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
perlCritic
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
php
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
phpCodeSniffer
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
phpStan
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pit
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pmdParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
polyspaceParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
prefast
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
protoLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
puppetLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pyDocStyle
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pyLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
qacSourceCodeAnalyser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
qtTranslation
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
analysisParser
analysisModelId : String
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
resharperInspectCode
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
revApi
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
rfLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
robocopy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ruboCop
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sarif
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
scala
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
$class: 'SigmaTool'
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
simian
highThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as high severity warnings.
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
normalThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as normal severity warnings. All warnings with less duplicated lines are considered as low severity warnings.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
simulinkCheckParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sonarQube
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sphinxBuild
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
spotBugs
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
useRankAsPriority : boolean
(optional)
styleCop
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
styleLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sunC
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
swiftLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tagList
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
taskingVx
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tiCss
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tnsdl
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
trivy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tsLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
valgrind
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
veracodePipelineScanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
issues
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
xlc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
xmlLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
yamlLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
yoctoScanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
yuiCompressor
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
zptLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
toolProxies
(optional)
For each static analysis tool a dedicated parser or scanner will be used to read report files or produce issues in any other way. If your tool is not yet supported you can define a new Groovy based parser in Jenkins system configuration. You can reference this new parser afterwards when you select the tool 'Groovy Parser'. Additionally, you provide a new parser within a new small plug-in. If the parser is useful for other teams as well please share it and provide pull requests for the
Warnings Next Generation Plug-in and the
Analysis Parsers Library.
Array / List of Nested Object
tool
For each static analysis tool, a dedicated parser or scanner will be used to read report files or produce issues in any other way. If your tool is not yet supported, you can define a new Groovy based parser in Jenkins system configuration. You can reference this new parser afterward when you select the tool 'Groovy Parser'. Additionally, you provide a new parser within a new small plug-in. If the parser is useful for other teams as well, please share it and provide pull requests for the Warnings Next Generation Plug-in and the Analysis Parsers Library.
Nested Choice of Objects
acuCobol
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ajc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
androidLintParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ansibleLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
aquaScanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
armCc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
$class: 'AstreeTool'
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
axivionSuite
basedir : String
(optional)
credentialsId : String
(optional)
icon : String
(optional)
id : String
(optional)
ignoreSuppressedOrJustified : boolean
(optional)
name : String
(optional)
namedFilter : String
(optional)
projectUrl : String
(optional)
bluepearl
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
brakeman
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
buckminster
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cadence
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cargo
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ccm
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
checkStyle
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clair
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clang
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clangAnalyzer
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clangTidy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cmake
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeAnalysis
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeChecker
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeGeneratorParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeNarc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
coolflux
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cpd
highThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as high severity warnings.
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
normalThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as normal severity warnings. All warnings with less duplicated lines are considered as low severity warnings.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cppCheck
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cppLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
CrossCoreEmbeddedStudioParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cssLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dscanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dart
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
detekt
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
diabC
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
docFx
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dockerLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
doxygen
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
drMemory
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dupFinder
highThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as high severity warnings.
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
normalThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as normal severity warnings. All warnings with less duplicated lines are considered as low severity warnings.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
eclipse
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
embeddedEngineerParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
erlc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
errorProne
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
esLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
findBugs
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
useRankAsPriority : boolean
(optional)
flake8
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
flawfinder
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
flexSdk
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
fxcop
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gcc3
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gcc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gendarme
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ghsMulti
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gnat
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gnuFortran
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
goLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
goVet
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
groovyScript
parserId : String
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
grype
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
hadoLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
iar
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
iarCstat
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ibLinter
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ideaInspection
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
infer
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
intel
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
invalids
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
junitParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
java
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
javaDoc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
jcReport
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
jsHint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
jsLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
klocWork
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
kotlin
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ktLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
mavenConsole
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
modelsim
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
metrowerksCodeWarrior
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
msBuild
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
myPy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
nagFortran
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
oelintAdv
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
otDockerLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
taskScanner
owaspDependencyCheck
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
PVSStudio
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
parasoftFindings
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
localSettingsPath : String
(optional)
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pcLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pep8
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
perforce
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
perlCritic
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
php
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
phpCodeSniffer
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
phpStan
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pit
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pmdParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
polyspaceParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
prefast
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
protoLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
puppetLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pyDocStyle
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pyLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
qacSourceCodeAnalyser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
qtTranslation
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
analysisParser
analysisModelId : String
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
resharperInspectCode
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
revApi
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
rfLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
robocopy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ruboCop
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sarif
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
scala
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
$class: 'SigmaTool'
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
simian
highThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as high severity warnings.
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
normalThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as normal severity warnings. All warnings with less duplicated lines are considered as low severity warnings.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
simulinkCheckParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sonarQube
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sphinxBuild
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
spotBugs
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
useRankAsPriority : boolean
(optional)
styleCop
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
styleLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sunC
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
swiftLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tagList
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
taskingVx
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tiCss
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tnsdl
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
trivy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tsLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
valgrind
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
veracodePipelineScanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
issues
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
xlc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
xmlLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
yamlLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
yoctoScanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
yuiCompressor
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
zptLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tools
(optional)
Array / List of Nested Choice of Objects
acuCobol
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ajc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
androidLintParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ansibleLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
aquaScanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
armCc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
$class: 'AstreeTool'
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
axivionSuite
basedir : String
(optional)
credentialsId : String
(optional)
icon : String
(optional)
id : String
(optional)
ignoreSuppressedOrJustified : boolean
(optional)
name : String
(optional)
namedFilter : String
(optional)
projectUrl : String
(optional)
bluepearl
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
brakeman
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
buckminster
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cadence
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cargo
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ccm
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
checkStyle
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clair
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clang
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clangAnalyzer
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clangTidy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cmake
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeAnalysis
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeChecker
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeGeneratorParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeNarc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
coolflux
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cpd
highThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as high severity warnings.
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
normalThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as normal severity warnings. All warnings with less duplicated lines are considered as low severity warnings.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cppCheck
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cppLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
CrossCoreEmbeddedStudioParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cssLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dscanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dart
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
detekt
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
diabC
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
docFx
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dockerLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
doxygen
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
drMemory
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dupFinder
highThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as high severity warnings.
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
normalThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as normal severity warnings. All warnings with less duplicated lines are considered as low severity warnings.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
eclipse
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
embeddedEngineerParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
erlc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
errorProne
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
esLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
findBugs
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
useRankAsPriority : boolean
(optional)
flake8
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
flawfinder
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
flexSdk
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
fxcop
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gcc3
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gcc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gendarme
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ghsMulti
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gnat
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gnuFortran
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
goLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
goVet
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
groovyScript
parserId : String
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
grype
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
hadoLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
iar
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
iarCstat
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ibLinter
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ideaInspection
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
infer
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
intel
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
invalids
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
junitParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
java
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
javaDoc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
jcReport
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
jsHint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
jsLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
klocWork
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
kotlin
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ktLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
mavenConsole
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
modelsim
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
metrowerksCodeWarrior
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
msBuild
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
myPy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
nagFortran
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
oelintAdv
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
otDockerLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
taskScanner
owaspDependencyCheck
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
PVSStudio
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
parasoftFindings
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
localSettingsPath : String
(optional)
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pcLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pep8
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
perforce
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
perlCritic
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
php
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
phpCodeSniffer
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
phpStan
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pit
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pmdParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
polyspaceParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
prefast
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
protoLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
puppetLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pyDocStyle
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pyLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
qacSourceCodeAnalyser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
qtTranslation
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
analysisParser
analysisModelId : String
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
resharperInspectCode
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
revApi
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
rfLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
robocopy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ruboCop
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sarif
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
scala
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
$class: 'SigmaTool'
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
simian
highThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as high severity warnings.
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
normalThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as normal severity warnings. All warnings with less duplicated lines are considered as low severity warnings.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
simulinkCheckParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sonarQube
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sphinxBuild
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
spotBugs
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
useRankAsPriority : boolean
(optional)
styleCop
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
styleLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sunC
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
swiftLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tagList
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
taskingVx
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tiCss
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tnsdl
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
trivy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tsLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
valgrind
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
veracodePipelineScanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
issues
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
xlc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
xmlLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
yamlLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
yoctoScanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
yuiCompressor
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
zptLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
trendChartType
(optional)
If there is more than one static analysis result available then an aggregation trend chart will be shown on the project page that shows the analysis results in a single trend chart. You can choose the position of this aggregation trend:
-
AGGREGATION_TOOLS
-
The aggregation trend is shown before all other analysis tool trend charts.
-
TOOLS_AGGREGATION
-
The aggregation trend is shown after all other analysis tool trend charts.
-
TOOLS_ONLY
-
The aggregation trend is not shown, only the analysis tool trend charts are shown.
-
AGGREGATION_ONLY
-
The aggregation trend is only shown, no other analysis tool trend charts are shown.
-
NONE
-
Neither the aggregation trend nor analysis tool trend charts are shown.
- Values:
AGGREGATION_TOOLS
, TOOLS_AGGREGATION
, TOOLS_ONLY
, AGGREGATION_ONLY
, NONE
unhealthy : int
(optional)
The unhealthy threshold defines the limit of warnings for an unhealthy result: A build is considered as unhealthy (i.e. 0% health) when the number of issues is greater than the specified threshold. Values less or equal zero are ignored. So if you want to have a build health of 0% starting with 10 issues, then set this field to 9.
scanForIssues
: Scan files or the console log for warnings or issues
blameDisabled : boolean
(optional)
If this option is unchecked, then the plugin automatically shows what revision and author (name and email) last modified the lines of the affected files that contain issues. If this operation slows down your build or you don't want to publish sensitive user data, you can use this option to deactivate this feature.
filters
(optional)
The created report of issues can be filtered afterwards. You can specify an arbitrary number of include or exclude filters. Currently, there is support for filtering issues by module name, package or namespace name, file name, category or type. Include filters will be combined with or
, exclude filters with and
. If no filter is defined, then all issues will be published. Filters with empty regular expression will be ignored.
Array / List of Nested Choice of Objects
excludeCategory
excludeFile
excludeMessage
excludeModule
excludePackage
excludeType
includeCategory
includeFile
includeMessage
includeModule
includePackage
includeType
quiet : boolean
(optional)
Quiet output to the console log: do not write logging messages to the console log. All logging messages will still be visible in the messages view of the warnings plugin.
scm : String
(optional)
Specify the key of your repository (substring is sufficient) if you are using multiple SCMs in your job. When your job is composed of several SCM checkouts (modules, pipeline libraries, etc.) then Jenkins stores all those repositories in an unsorted way.
skipBlames : boolean
(optional)
If this option is unchecked, then the plugin automatically shows what revision and author (name and email) last modified the lines of the affected files that contain issues. If this operation slows down your build, or you don't want to publish sensitive user data, you can use this option to deactivate this feature.
skipPostProcessing : boolean
(optional)
If this option is unchecked, then the plugin automatically resolves absolute paths, fingerprints, package and module names from the source files in the workspace. If this operation slows down your build, you can use this option to deactivate this feature.
sourceCodeEncoding : String
(optional)
In order to correctly show all your affected source code files in the detail views, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty then the default encoding of the platform will be used. This might work but is not recommended.
sourceCodeRetention
(optional)
Select the strategy that should be used to store the affected source code files. Storing the affected source code files along with the issues consumes a lot of space on your hard disk for large projects. So if your server has not enough free space available to store the sources for all builds, it might make more sense to store only the sources of the last build. In this case, the plugin will automatically discard old results before the new sources are stored. If you do not need the source files at all, you can deactivate the storing of source code files. The following options are supported:
-
NEVER
-
Never store source code files.
-
LAST_BUILD
-
Store source code files of the last build, delete older artifacts.
-
EVERY_BUILD
-
Store source code files for all builds, never delete those files automatically.
-
MODIFIED
-
Store only changed source code files for all builds, never delete those files automatically.
- Values:
NEVER
, LAST_BUILD
, EVERY_BUILD
, MODIFIED
sourceDirectories
(optional)
Some plugins copy source code files to Jenkins' build folder so that these files can be rendered in the user interface together with build results (coverage, warnings, etc.). If these files are not part of the workspace of a build then Jenkins will not show them by default: otherwise sensitive files could be shown by accident. You can provide a list of additional source code directories that are allowed to be shown in Jenkins user interface here. Note, that such a directory must be an absolute path on the agent that executes the build.
Array / List of Nested Object
path : String
Select the path to your source code files. This plugin copies source code files to Jenkins' build folder so that these files can be rendered in the user interface together with the plugin results. If these files are referenced with relative paths then they cannot be found by the plugin. In these cases you need to specify one or more relative paths within the workspace where the plugin can locate them. Alternatively, you can also specify absolute paths if the source code files are stored outside the workspace (in a directory on the agent). All absolute paths must be additionally approved by an administrator in Jenkins' global configuration page.
tool
(optional)
For each static analysis tool a dedicated parser or scanner will be used to read report files or produce issues in any other way. If your tool is not yet supported you can define a new Groovy based parser in Jenkins system configuration. You can reference this new parser afterwards when you select the tool 'Groovy Parser'. Additionally, you provide a new parser within a new small plug-in. If the parser is useful for other teams as well please share it and provide pull requests for the
Warnings Next Generation Plug-in and the
Analysis Parsers Library.
Nested Choice of Objects
acuCobol
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ajc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
androidLintParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ansibleLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
aquaScanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
armCc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
$class: 'AstreeTool'
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
axivionSuite
basedir : String
(optional)
credentialsId : String
(optional)
icon : String
(optional)
id : String
(optional)
ignoreSuppressedOrJustified : boolean
(optional)
name : String
(optional)
namedFilter : String
(optional)
projectUrl : String
(optional)
bluepearl
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
brakeman
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
buckminster
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cadence
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cargo
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ccm
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
checkStyle
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clair
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clang
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clangAnalyzer
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
clangTidy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cmake
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeAnalysis
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeChecker
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeGeneratorParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
codeNarc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
coolflux
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cpd
highThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as high severity warnings.
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
normalThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as normal severity warnings. All warnings with less duplicated lines are considered as low severity warnings.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cppCheck
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cppLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
CrossCoreEmbeddedStudioParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
cssLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dscanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dart
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
detekt
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
diabC
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
docFx
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dockerLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
doxygen
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
drMemory
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
dupFinder
highThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as high severity warnings.
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
normalThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as normal severity warnings. All warnings with less duplicated lines are considered as low severity warnings.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
eclipse
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
embeddedEngineerParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
erlc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
errorProne
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
esLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
findBugs
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
useRankAsPriority : boolean
(optional)
flake8
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
flawfinder
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
flexSdk
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
fxcop
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gcc3
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gcc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gendarme
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ghsMulti
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gnat
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
gnuFortran
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
goLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
goVet
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
groovyScript
parserId : String
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
grype
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
hadoLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
iar
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
iarCstat
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ibLinter
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ideaInspection
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
infer
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
intel
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
invalids
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
junitParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
java
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
javaDoc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
jcReport
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
jsHint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
jsLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
klocWork
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
kotlin
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ktLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
mavenConsole
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
modelsim
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
metrowerksCodeWarrior
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
msBuild
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
myPy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
nagFortran
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
oelintAdv
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
otDockerLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
taskScanner
owaspDependencyCheck
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
PVSStudio
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
parasoftFindings
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
localSettingsPath : String
(optional)
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pcLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pep8
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
perforce
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
perlCritic
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
php
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
phpCodeSniffer
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
phpStan
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pit
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pmdParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
polyspaceParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
prefast
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
protoLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
puppetLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pyDocStyle
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
pyLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
qacSourceCodeAnalyser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
qtTranslation
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
analysisParser
analysisModelId : String
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
resharperInspectCode
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
revApi
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
rfLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
robocopy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
ruboCop
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sarif
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
scala
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
$class: 'SigmaTool'
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
simian
highThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as high severity warnings.
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
normalThreshold : int
(optional)
All warnings that have more duplicated lines than this number (or equal to this number) are considered as normal severity warnings. All warnings with less duplicated lines are considered as low severity warnings.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
simulinkCheckParser
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sonarQube
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sphinxBuild
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
spotBugs
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
useRankAsPriority : boolean
(optional)
styleCop
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
styleLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
sunC
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
swiftLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tagList
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
taskingVx
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tiCss
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tnsdl
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
trivy
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
tsLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
valgrind
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
veracodePipelineScanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
issues
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
xlc
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
xmlLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
yamlLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
yoctoScanner
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
yuiCompressor
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
zptLint
icon : String
(optional)
You can override the icon of the tool. This icon is used in the overview, in details views, and hyperlinks. If you leave the icon empty, then the built-in default icon of the registered tool will be used.
Icons are specified using one of the existing Jenkins symbols. Additional icons are available in the ionicons and font-awesome plugins. If none of these icons fit your needs, you can also use a custom icon that can be deployed to the Jenkins userContent
directory.
id : String
(optional)
The results of the selected tool are published using a unique ID (i.e., URL) which must not be already used by another tool in this job. This ID is used as a link to the results, so choose a short and meaningful name. Allowed elements are characters, digits, dashes and underscores (more precisely, the ID must match the regular expression \p{Alnum}[\p{Alnum}-_]*
). If you leave the ID field empty, then the built-in default ID of the registered tool w will be used.
name : String
(optional)
You can override the display name of the results. This name is used in details views, trend captions, and hyperlinks. If you leave the name field empty, then the built-in default name of the registered tool will be used.
pattern : String
(optional)
reportEncoding : String
(optional)
In order to read all characters of your reports correctly, the plugin must open these files with the correct character encoding (UTF-8, ISO-8859-1, etc.). If you leave this field empty, then the default encoding of the platform will be used. This might work but is not recommended.
skipSymbolicLinks : boolean
(optional)
Skipping symbolic links is useful when the scanned directory contains links that create a recursive structure. Note that this option may not work on Windows, since symbolic links are not fully supported here.
Was this page helpful?
Please submit your feedback about this page through this
quick form.
Alternatively, if you don't wish to complete the quick form, you can simply
indicate if you found this page helpful?
See existing feedback here.