Maven setting文件配置错误:Non-parseable settings..in comment after two dashes (--) next character must be>

安装配置Maven
安装完Maven后,配置本地系统环境变量,配置好setting.xml文件:设置本地仓库,设置国内镜像,设置JDK版本等;

详细安装配置,请参考:Maven配置

运行mvn命令
运行mvn -version 成功返回maven相关信息

运行mvn help:system,自动帮我们到Maven中央仓库下载缺省的或者Maven中央仓库更新的各种配置文件和类库(jar包)到Maven本地仓库中,下载完各种文件后,该命令会打印出所有的Java系统属性和环境变量。

但是我运行mvn help:system命令报错:

C:\Users\tuhao>mvn help:system

[ERROR] Error executing Maven.
[ERROR] 1 problem was encountered while building the effective settings
[FATAL] Non-parseable settings D:\program\code_programmer\apache\apache-maven-3.6.1\bin\..\conf\settings.xml: in comment after two dashes (--) next character must be > not   (position: START_TAG seen ...\n\ua0 
Maven setting文件配置错误:Non-parseable settings..in comment after two dashes (--) next character must be>_第1张图片
​​​​​​解决上述问题后,再运行mvn help:system,命令成功运行
Maven setting文件配置错误:Non-parseable settings..in comment after two dashes (--) next character must be>_第2张图片

你可能感兴趣的:(Maven)