From 6561fe19a52dd002ab02b776f6f22ec2a7e4e31f Mon Sep 17 00:00:00 2001 From: Nikita Fedkin Date: Fri, 30 Aug 2024 16:21:24 +0200 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BC=D0=B5=D0=BD=D0=B0=20=D0=B4=D0=B5?= =?UTF-8?q?=D1=84=D0=BE=D0=BB=D1=82=D0=BD=D0=BE=D0=B9=20=D0=B2=D0=B5=D1=80?= =?UTF-8?q?=D1=81=D0=B8=D0=B8=20=D1=84=D0=BE=D1=80=D0=BC=D0=B0=D1=82=D1=82?= =?UTF-8?q?=D0=B5=D1=80=D0=B0=20=D1=81=D1=82=D0=B5=D0=B1=D0=B8=20=D0=BD?= =?UTF-8?q?=D0=B0=2010.3+?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/globalConfiguration.json | 2 +- resources/schema.json | 4 ++-- .../library/configuration/ResultsTransformOptions.groovy | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/resources/globalConfiguration.json b/resources/globalConfiguration.json index 6486af0f..aa1af975 100644 --- a/resources/globalConfiguration.json +++ b/resources/globalConfiguration.json @@ -93,7 +93,7 @@ }, "resultsTransform": { "transformer": "stebi", - "genericIssueFormat": "Generic_Issue", + "genericIssueFormat": "Generic_Issue_10_3", "removeSupport": true, "supportLevel": 0 }, diff --git a/resources/schema.json b/resources/schema.json index f612008c..8a433eef 100644 --- a/resources/schema.json +++ b/resources/schema.json @@ -346,7 +346,7 @@ "properties" : { "transformer" : { "type" : "string", - "description" : "Способ преобразования замечаний.\n Поддерживается stebi и edt-ripper\n По умолчанию содержит значение \"stebi\".\n ", + "description" : "Способ преобразования замечаний.\n Поддерживается stebi и edt-ripper.\n По умолчанию содержит значение \"stebi\".\n ", "enum" : [ "stebi", "edt-ripper" ] }, "removeSupport" : { @@ -359,7 +359,7 @@ }, "genericIssueFormat" : { "type" : "string", - "description" : "Формат отчета generic issue. Только для stebi.\n Для SonarQube 10.3+ необходимо использовать Generic_Issue_10_3.\n По умолчанию Generic_Issue\n ", + "description" : "Формат отчета generic issue. Только для stebi.\n Для SonarQube старее 10.3 необходимо использовать Generic_Issue.\n По умолчанию Generic_Issue_10_3\n ", "enum" : [ "Generic_Issue", "Generic_Issue_10_3" ] } } diff --git a/src/ru/pulsar/jenkins/library/configuration/ResultsTransformOptions.groovy b/src/ru/pulsar/jenkins/library/configuration/ResultsTransformOptions.groovy index 2f4dcb77..de471214 100644 --- a/src/ru/pulsar/jenkins/library/configuration/ResultsTransformOptions.groovy +++ b/src/ru/pulsar/jenkins/library/configuration/ResultsTransformOptions.groovy @@ -9,7 +9,7 @@ import ru.pulsar.jenkins.library.configuration.sonarqube.GenericIssueFormat class ResultsTransformOptions implements Serializable { @JsonPropertyDescription("""Способ преобразования замечаний. - Поддерживается stebi и edt-ripper + Поддерживается stebi и edt-ripper. По умолчанию содержит значение "stebi". """) ResultsTransformerType transformer = ResultsTransformerType.STEBI @@ -25,10 +25,10 @@ class ResultsTransformOptions implements Serializable { Integer supportLevel @JsonPropertyDescription("""Формат отчета generic issue. Только для stebi. - Для SonarQube 10.3+ необходимо использовать Generic_Issue_10_3. - По умолчанию Generic_Issue + Для SonarQube старее 10.3 необходимо использовать Generic_Issue. + По умолчанию Generic_Issue_10_3 """) - GenericIssueFormat genericIssueFormat = GenericIssueFormat.GENERIC_ISSUE + GenericIssueFormat genericIssueFormat = GenericIssueFormat.GENERIC_ISSUE_10_3 @Override @NonCPS