使用Eclipse構建Maven項目環境搭建

 

1、下載並安裝jdkhtml

一、下載地址:http://www.oracle.com/technetwork/java/javase/downloads/index.htmljava

二、傻瓜式「下一步」,「下一步」安裝apache

三、環境變量配置:oracle

  JAVA_HOME      C:\Program Files\Java\jdk1.7.0_79eclipse

  PATH        %JAVA_HOME%\bin;%JAVA_HOME%\jre\binmaven

  CLASS_PATH    .;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jarurl

2、下載並安裝eclipsespa

一、下載地址:http://www.eclipse.org/downloads/.net

二、解壓即安裝插件

3、Maven插件離線安裝

一、下載

(1)地址:http://maven.apache.org/download.cgi

 

二、安裝

  解壓即安裝

三、配置

(1)修改本地倉庫位置

  進入apache-maven-3.5.0\conf,編輯settings.xml文件,增長參數

  <localRepository>F:\m2\repository</localRepository>

(2)修改默認的中央倉庫鏡像(Maven下載 jar 慢可使用國內阿里鏡像)

<mirrors>
    <mirror>  
        <id>aliyun</id>  
        <name>aliyun</name>  
        <url>http://maven.aliyun.com/nexus/content/groups/public/</url>  
          <mirrorOf>central</mirrorOf>  
    </mirror>  
</mirrors>  
      
<profiles>  
    <profile>  
        <id>nexus</id>  
        <repositories>  
            <repository>  
            <id>central</id>  
            <url>http://repo.maven.apache.org/maven2</url>  
            <snapshots>  
            <enabled>false</enabled>  
            </snapshots>  
            </repository>  
            <repository>  
            <id>ansj-repo</id>  
            <name>ansj Repository</name>  
            <url>http://maven.nlpcn.org/</url>  
            <snapshots>  
            <enabled>false</enabled>  
            </snapshots>  
            </repository>  
        </repositories>  
    </profile>  
</profiles>  
  
<activeProfiles>  
    <activeProfile>nexus</activeProfile>  
</activeProfiles>  

(3)下載m2eclipser插件(eclipse-maven3-plugin.7z),地址:http://download.csdn.net/detail/bluerebel/7407455

(4)在eclipse的安裝根目錄下新建兩個文件夾「links」和「myplugins」(名稱可隨便取)

(5)將m2eclipser插件(eclipse-maven3-plugin.7z)解壓到\eclipse\myplugins\目錄下

(6)在/eclipse/link/目錄下新建maven.link文件並添加如下內容:

  path=C:\Program Files (x86)\eclipse\myplugins\maven

(7)執行:mvn help:system,下載庫

(8)配置:eclipse中「Window」,「Preferences」,便可看到Maven配置項

(9)而後點擊Installations –> add 選擇maven安裝目錄,這裏個人Maven安裝目錄爲E:\install_work\apache-maven-3.5.0,選擇你的Maven安裝目錄,並點擊肯定, 以後能夠點擊Apply,點擊OK,便可完成

(10)設置User Settings:Global Settings選擇maven 安裝目錄下conf文件夾下的settings.xml,這裏個人Maven安裝目錄爲F:\install_work\apache-maven-3.5.0\confsettings.xml,選擇你的Maven安裝目錄,檢查Local Repository 項,若是爲F:\m2eclipse\repository則配置成功,不然從新配置上一步。

 至此,Eclipse成功離線集成Maven插件

參考:http://blog.csdn.net/jiuqiyuliang/article/details/41076215

   http://blog.csdn.net/jiuqiyuliang/article/details/45390313

   http://www.cnblogs.com/wangshouchang/p/6187428.html

相關文章
相關標籤/搜索