@@ -36,50 +36,50 @@ data class RepositoryConfiguration(
3636 /* *
3737 * The configuration for the analyzer. Values in this configuration take precedence over global configuration.
3838 */
39- @JsonInclude(value = JsonInclude .Include .NON_NULL )
39+ @JsonInclude(JsonInclude .Include .NON_NULL )
4040 val analyzer : RepositoryAnalyzerConfiguration ? = null ,
4141
4242 /* *
4343 * Defines which parts of the repository will be excluded. Note that excluded parts will still be analyzed and
4444 * scanned, but related errors will be marked as resolved in the reporter output.
4545 */
46- @JsonInclude(value = JsonInclude .Include .CUSTOM , valueFilter = ExcludesFilter ::class )
46+ @JsonInclude(JsonInclude .Include .CUSTOM , valueFilter = ExcludesFilter ::class )
4747 val excludes : Excludes = Excludes (),
4848
4949 /* *
5050 * Defines which parts of the repository will be included.
5151 */
52- @JsonInclude(value = JsonInclude .Include .CUSTOM , valueFilter = IncludesFilter ::class )
52+ @JsonInclude(JsonInclude .Include .CUSTOM , valueFilter = IncludesFilter ::class )
5353 val includes : Includes = Includes .EMPTY ,
5454
5555 /* *
5656 * Defines resolutions for issues with this repository.
5757 */
58- @JsonInclude(value = JsonInclude .Include .CUSTOM , valueFilter = ResolutionsFilter ::class )
58+ @JsonInclude(JsonInclude .Include .CUSTOM , valueFilter = ResolutionsFilter ::class )
5959 val resolutions : Resolutions = Resolutions (),
6060
6161 /* *
6262 * Defines curations for packages used as dependencies by projects in this repository, or curations for license
6363 * findings in the source code of a project in this repository.
6464 */
65- @JsonInclude(value = JsonInclude .Include .CUSTOM , valueFilter = CurationsFilter ::class )
65+ @JsonInclude(JsonInclude .Include .CUSTOM , valueFilter = CurationsFilter ::class )
6666 val curations : Curations = Curations (),
6767
6868 /* *
6969 * Defines configurations for packages used as dependencies by projects in this repository.
7070 */
71- @JsonInclude(value = JsonInclude .Include .NON_EMPTY )
71+ @JsonInclude(JsonInclude .Include .NON_EMPTY )
7272 val packageConfigurations : List <PackageConfiguration > = emptyList(),
7373
7474 /* *
7575 * Defines license choices within this repository.
7676 */
77- @JsonInclude(value = JsonInclude .Include .CUSTOM , valueFilter = LicenseChoicesFilter ::class )
77+ @JsonInclude(JsonInclude .Include .CUSTOM , valueFilter = LicenseChoicesFilter ::class )
7878 val licenseChoices : LicenseChoices = LicenseChoices (),
7979
8080 /* *
8181 * Defines snippet choices for projects in this repository.
8282 */
83- @JsonInclude(value = JsonInclude .Include .NON_EMPTY )
83+ @JsonInclude(JsonInclude .Include .NON_EMPTY )
8484 val snippetChoices : List <SnippetChoices > = emptyList()
8585)
0 commit comments