eclipse新建maven專案:'Building' has encountered a problem. Errors occurred during the build.

一樂樂發表於2022-03-23

一、eclipse 新建maven 專案報錯(因為沒有配置maven環境)

1、問題:

① 出現的問題1:

Could not calculate build plan:Plugin
org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6

image


② 出現的問題2:

'Building' has encountered a problem. Errors occurred during the build.
image



2、分析問題:

① 錯誤原因:編譯工具eclipse沒有配置 maven的環境



3、解決:在eclipse中配置maven的環境

image



二、補充一下 maven的環境搭建



Maven 環境搭建

一、準備工作:

1、maven下載:官網:https://maven.apache.org/download.cgi

  • 下載完成後解壓出來

2、配置環境變數

  • 細節:為什麼要單獨配置一個M2_HOME 的變數:方便後續學習

    • 後續使用的自動依賴的系統,比如SpringBoot、SpringCloud,它會引用M2_HOME 這個地址。

■ 新增系統變數:

□ M2_HOME maven目錄下的bin目錄

□ MAVEN_HOME maven的目錄

□ 在系統的path中配置 %MAVEN_HOME%\bin

image-20220323174612772 image-20220323174737503

■ 驗證maven是否配置成功:檢視maven版本的命令 mvn -version

image-20220323175147905

3、修改maven 配置檔案的映象為 阿里雲映象

  • 配置檔案位置:maven根目錄/conf/settings.xml 找到映象元素mirrors

  • 映象:mirrors:

    • 作用:加速下載
    • 預設是使用國外的映象,國內建議使用阿里雲映象加速下載
       <!-- 新增之前,先把原來的映象全註釋掉 -->
      <!-- 配置方式1 -->
       <mirror>
            <id>nexus-aliyun</id>
         <mirrorOf>*,!jeecg,!jeecg-snapshots</mirrorOf>
            <name>Nexus aliyun</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public</url>
        </mirror>
    
  <!-- 配置方式2 -->
	<mirror>
        <id>nexus-aliyun</id>
     <mirrorOf>central</mirrorOf>
        <name>Nexus aliyun</name>
        <url>http://maven.aliyun.com/nexus/content/groups/public</url>
    </mirror>

4、修改maven 配置檔案的本地倉庫位置

  • 修改本地倉庫位置為:maven 根目錄下 自己手動建立的 maven-repo
  • 配置檔案位置:maven根目錄/conf/settings.xml 找到 localRepository元素
  <localRepository>E:\environment\mavenEvironment\apache-maven-3.8.2\maven-repo</localRepository>

相關文章