You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maven task does not find the task-report.txt is some cases (#2559)
* Search for task-report.txt instead of picking it up from a fixed location
* Update Gradle to use the same aproach
* fs exists sync
* Remove unused var
Copy file name to clipboardExpand all lines: Tasks/Gradle/Strings/resources.resjson/en-US/resources.resjson
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,8 @@
80
80
"loc.messages.sqAnalysis_QualityGatePassed": "The SonarQube quality gate associated with this build has passed (status %s)",
81
81
"loc.messages.sqAnalysis_UnknownComparatorString": "The SonarQube build summary encountered a problem: unknown comparator '%s'",
82
82
"loc.messages.sqAnalysis_NoUnitsFound": "The list of SonarQube measurement units could not be retrieved from the server.",
83
+
"loc.messages.sqAnalysis_NoReportTask": "Could not find report-task.txt. Possible cause: the SonarQube analysis did not complete successfully.",
84
+
"loc.messages.sqAnalysis_MultipleReportTasks": "Multiple report-task.txt files found. Choosing the first one. The build summary and the build breaker may not be accurate. Possible cause: multiple SonarQube analysis during the same build, which is not supported.",
83
85
"loc.messages.codeAnalysisBuildSummaryLine_SomeViolationsSomeFiles": "%s found %d violations in %d files.",
84
86
"loc.messages.codeAnalysisBuildSummaryLine_SomeViolationsOneFile": "%s found %d violations in 1 file.",
85
87
"loc.messages.codeAnalysisBuildSummaryLine_OneViolationOneFile": "%s found 1 violation in 1 file.",
Copy file name to clipboardExpand all lines: Tasks/Gradle/task.json
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
"version": {
13
13
"Major": 1,
14
14
"Minor": 0,
15
-
"Patch": 60
15
+
"Patch": 61
16
16
},
17
17
"demands": [
18
18
"java"
@@ -344,6 +344,8 @@
344
344
"sqAnalysis_QualityGatePassed": "The SonarQube quality gate associated with this build has passed (status %s)",
345
345
"sqAnalysis_UnknownComparatorString": "The SonarQube build summary encountered a problem: unknown comparator '%s'",
346
346
"sqAnalysis_NoUnitsFound": "The list of SonarQube measurement units could not be retrieved from the server.",
347
+
"sqAnalysis_NoReportTask": "Could not find report-task.txt. Possible cause: the SonarQube analysis did not complete successfully.",
348
+
"sqAnalysis_MultipleReportTasks": "Multiple report-task.txt files found. Choosing the first one. The build summary and the build breaker may not be accurate. Possible cause: multiple SonarQube analysis during the same build, which is not supported.",
347
349
"codeAnalysisBuildSummaryLine_SomeViolationsSomeFiles": "%s found %d violations in %d files.",
348
350
"codeAnalysisBuildSummaryLine_SomeViolationsOneFile": "%s found %d violations in 1 file.",
349
351
"codeAnalysisBuildSummaryLine_OneViolationOneFile": "%s found 1 violation in 1 file.",
Copy file name to clipboardExpand all lines: Tasks/Maven/Strings/resources.resjson/en-US/resources.resjson
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,8 @@
82
82
"loc.messages.sqAnalysis_QualityGatePassed": "The SonarQube quality gate associated with this build has passed (status %s)",
83
83
"loc.messages.sqAnalysis_UnknownComparatorString": "The SonarQube build summary encountered a problem: unknown comparator '%s'",
84
84
"loc.messages.sqAnalysis_NoUnitsFound": "The list of SonarQube measurement units could not be retrieved from the server.",
85
+
"loc.messages.sqAnalysis_NoReportTask": "Could not find report-task.txt. Possible cause: the SonarQube analysis did not complete successfully.",
86
+
"loc.messages.sqAnalysis_MultipleReportTasks": "Multiple report-task.txt files found. Choosing the first one. The build summary and the build breaker may not be accurate. Possible cause: multiple SonarQube analysis during the same build, which is not supported.",
85
87
"loc.messages.codeAnalysisBuildSummaryLine_SomeViolationsSomeFiles": "%s found %d violations in %d files.",
86
88
"loc.messages.codeAnalysisBuildSummaryLine_SomeViolationsOneFile": "%s found %d violations in 1 file.",
87
89
"loc.messages.codeAnalysisBuildSummaryLine_OneViolationOneFile": "%s found 1 violation in 1 file.",
0 commit comments