【轉】maven的安裝、配置以及下載jar包

來源:互聯網
上載者:User

標籤:ima   targe   ==   repo   jar包   檔案   bsp   settings   profile   

原文地址:79015456

1.下載maven的壓縮包,並解壓到除了C盤裡的maven檔案夾中2.在解壓後的maven同級目錄下建立一個Repository檔案,用於存放各種jar包3.進入解壓後的檔案夾的-->conf-->settings.xml檔案,用記事本工具開啟1)設定預設儲存jar包的倉庫的位置:<localRepository>E:\Program Files\maven-3.5.2\Repository</localRepository>2)設定國內的鏡像地址<!--設定國內的maven鏡像-->
<mirror>
      <id>alimaven</id>
      <name>aliyun maven</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>        
    </mirror>3)修改建立maven項目的預設JDK版本為1.8<!--修改建立maven項目的預設JDK版本為1.8-->
<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>至此,該設定檔全部設定完畢4.配置環境變數:1).在環境變數的使用者或者系統變數中添加 M2_HOME  路徑:解壓後maven的根目錄-->E:\Program Files\maven-3.5.2\apache-maven-3.5.22).在path中添加maven的bin路徑:;E:\Program Files\maven-3.5.2\apache-maven-3.5.2\bin5.在命令列模式下測試:出現maven的版本就是配置成功!此時已經成功一半了

【轉】maven的安裝、配置以及下載jar包

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.