Skip to content

Commit f5c9c18

Browse files
author
Mariya Pershina
committed
Added MTA-5731
1 parent e6aac40 commit f5c9c18

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

assemblies/cli-guide/assembly_reviewing-analysis-reports.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ include::topics/mta-cli/proc_accessing-analysis-report.adoc[leveloffset=+1]
2020

2121
include::topics/mta-cli/ref_analysis-report-sections.adoc[leveloffset=+1]
2222

23+
include::topics/mta-cli/proc_reviewing-analysis-issues-and-incidents.adoc[leveloffset=+1]
2324

2425
ifdef::parent-context-of-reviewing-analysis-reports[:context: {parent-context-of-reviewing-analysis-reports}]
2526
ifndef::parent-context-of-reviewing-analysis-reports[:!context:]
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
:_newdoc-version: 2.18.5
2+
:_template-generated: 2025-07-08
3+
:_mod-docs-content-type: PROCEDURE
4+
5+
[id="reviewing-analysis-issues-and-incidents_{context}"]
6+
= Reviewing the analysis issues and incidents
7+
8+
After an analysis is complete, you can review issues that might appear during an application migration. Each issue contains a list of files where a rule matched one or more times. These files include all the incidents within the issue. Each incident contains a detailed explanation of the issue and how to fix this issue.
9+
10+
.Procedure
11+
12+
. Open the analysis report. For more information, see xref:accessing-analysis-report_reviewing-analysis-reports[Accessing an analysis report].
13+
. Click *Issues*.
14+
. Click on the issue you want to check.
15+
. Under the *File* tab, click on a file to display an incident or incidents that triggered the issue.
16+
. Display the incident message by hovering over the line that triggered the incident, for example:
17+
+
18+
[subs="+quotes"]
19+
....
20+
Use the Quarkus Maven plugin adding the following sections to the pom.xml file:
21+
<properties>
22+
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
23+
<quarkus.platform.version>3.1.0.Final</quarkus.platform.version>
24+
</properties>
25+
<build>
26+
<plugins>
27+
<plugin>
28+
<groupId>$</groupId>
29+
<artifactId>quarkus-maven-plugin</artifactId>
30+
<version>$</version>
31+
<extensions>true</extensions>
32+
<executions>
33+
<execution>
34+
<goals>
35+
<goal>build</goal>
36+
<goal>generate-code</goal>
37+
<goal>generate-code-tests</goal>
38+
</goals>
39+
</execution>
40+
</executions>
41+
</plugin>
42+
</plugins>
43+
</build>
44+
....
45+
46+

0 commit comments

Comments
 (0)