如何解決設置maven時Could not read settings.xml

今天初學maven碰到了配置錯誤maven

錯誤信息:url

解決方法:spa

能夠看到再次點擊Browse選擇settings.xml文件後出現了警告:Unable to parse global ...\u7a9d\n<m... @226:3) ,xml

這個226說明第226行出現了錯誤,致使了文件不能正常讀取,仔細檢查該行有沒有錯誤或者中文信息。blog

更改後:get

這個錯誤是settings.xml內標籤配置有問題,替換正確的標籤信息後可以解決。it

 

放一下使用的路徑配置:<localRepository>E:/maven/repository/</localRepository>    io

 

阿里鏡像:jdk

<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>配置

 

jdk配置:

<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>

相關文章
相關標籤/搜索