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
After doing a git pull origin master, mvn clean install stops with the error:
[INFO] Scanning for projects...
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR] The project (C:\app\CFLint\pom.xml) has 1 error
[ERROR] Non-parseable POM C:\app\CFLint\pom.xml: in comment after two dashes (--) next character must be > not \t (p
\n\t\t\t\r\n\t<!--\t... @205:7) @ line 205, column 7 -> [Help 2]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/ModelParseException
The problem is that a comment is embedded inside of another comment. The outer comment starts at line 179 and ends at line 260. The inner comment starts at line 205 and ends at line 218. The solution is either delete the internal comment or just remove the comment markers on 205 and 218.
The maven clean install will then work.
The text was updated successfully, but these errors were encountered:
After doing a git pull origin master, mvn clean install stops with the error:
[INFO] Scanning for projects...
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR] The project (C:\app\CFLint\pom.xml) has 1 error
[ERROR] Non-parseable POM C:\app\CFLint\pom.xml: in comment after two dashes (--) next character must be > not \t (p
\n\t\t\t\r\n\t<!--\t... @205:7) @ line 205, column 7 -> [Help 2]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/ModelParseException
The problem is that a comment is embedded inside of another comment. The outer comment starts at line 179 and ends at line 260. The inner comment starts at line 205 and ends at line 218. The solution is either delete the internal comment or just remove the comment markers on 205 and 218.
The maven clean install will then work.
The text was updated successfully, but these errors were encountered: