windows下集成maven+eclipse开发环境二:集成maven到eclipse,并使用nexus作为maven仓库...
上一章中,我們已經成功安裝了nexus,現在我們將在eclipse中集成maven插件,并將nexus配置成maven的倉庫。
?
1、安裝eclipse的svn插件subeclipse,打開你的eclipse(筆者使用的是eclipse 3.6),依次打開help->Software Updates->Find and instill;如下圖:
?
?
在彈出的窗口中選擇第二個單選框,然后下一步:
?
點擊右面的New Remote site…按鈕,新建一個遠程插件更新地址,在彈出的對話框中填寫如下內容:
Name:subeclipse(名字可以隨便填)
URL:http://subclipse.tigris.org/update_1.6.x
?
?
在短暫的讀條過程之后會依次出現若干個對話框,有詢問的一律統一,然后Next或者Finish到底就是了。之后會開始插件的安裝,eclipse會從遠程下載插件安裝,安裝完畢后,會提示重啟eclipse。如果重啟后能在視圖菜單中找到SVN資源庫研究就說明安裝成功了,如圖:
?
maven插件的安裝稍微要不同一點,首頁help->install new software…在彈出的對話框中點擊add按鈕,然后再在彈出的對話框中填入下面的內容:
Name:m2e
URL:http://m2eclipse.sonatype.org/sites/m2e
?
?
在點擊ok后,eclipse會從遠程服務器讀取相關信息,直到出現:
?
?
勾選這條記錄,然后一路Next到Finish。然后eclipse會從遠程服務器下載m2e插件(下載速度敢不敢再慢點..擦!),后面的過程與安裝svn插件時基本相同了,在這里就不闡述了。
重慶之后如果出現如下警告,請參照該地址的解決辦法:http://www.sunchis.com/html/hsware/software/2011/1102/371.html
?
好了,如果在新建菜單中出現了maven的相關項就說明安裝maven成功了!如下圖:
?
?
然后我們開始配置maven,將nexus配置為maven的倉庫。
?
安裝完m2e后,會在用戶文件夾下面的新建一個中央倉庫文件夾,而因為是直接安裝的eclipse的m2e插件,所以需要手動新建一個setting.xml文件。
進入目錄:C:\Users\用戶名\.m2
然后新建一個settings.xml文件,內容如下
?
settings.xml <?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0http://maven.apache.org/xsd/settings-1.0.0.xsd"><mirrors><mirror><!--This is used to direct the public snapshots repo in the profile below over to a different nexus group --><id>nexus-public-snapshots</id><mirrorOf>public-snapshots</mirrorOf><url>http://127.0.0.1:8081/nexus/content/groups/public-snapshots</url></mirror><mirror><!--This sends everything else to /public --><id>nexus</id><mirrorOf>*</mirrorOf><url>http://127.0.0.1:8081/nexus/content/groups/public</url></mirror></mirrors><profiles><profile><id>development</id><repositories><repository><id>central</id><url>http://central</url><releases><enabled>true</enabled></releases><snapshots><enabled>true</enabled></snapshots></repository></repositories><pluginRepositories><pluginRepository><id>central</id><url>http://central</url><releases><enabled>true</enabled></releases><snapshots><enabled>true</enabled></snapshots></pluginRepository></pluginRepositories></profile><profile><!--this profile will allow snapshots to be searched when activated--><id>public-snapshots</id><repositories><repository><id>public-snapshots</id><url>http://public-snapshots</url><releases><enabled>false</enabled></releases><snapshots><enabled>true</enabled></snapshots></repository></repositories><pluginRepositories><pluginRepository><id>public-snapshots</id><url>http://public-snapshots</url><releases><enabled>false</enabled></releases><snapshots><enabled>true</enabled></snapshots></pluginRepository></pluginRepositories></profile></profiles><activeProfiles><activeProfile>development</activeProfile></activeProfiles> </settings>?
根據Maven權威指南描述:
?
在你將Nexus 配置成所有倉庫的鏡像之后,Maven 現在會從本地的 Nexus 安裝
查閱,而非去外面查閱中央Maven 倉庫。如果對Nexus 有一個構件請求,本地
的Nexus 安裝會提供這個構件。如果 Nexus 沒有這個構件,Nexus 會從遠程倉庫
獲取這個構件,然后添加至遠程倉庫的本地鏡像。
要測試Nexus 如何工作的,從你的本地Maven 倉庫中刪除一個目錄,然后運行
Maven 構建。如果你刪除了~/.m2/repository/org,你會刪除一大堆的依賴(包
括Maven 插件)。下次你運行Maven 的時候,你應該看到如下的信息:?
$ mvn clean install?
...
Downloading: http://localhost:8081/nexus/content/groups/public/ ...
3K downloaded
這個輸出應該能讓你相信Maven 正和你本地的Nexus 通訊,而非向外面的中央
Maven 倉庫獲取構件。在你基于本地的 Nexus 運行過一些構建之后,你就可以瀏
覽緩存在你本地Nexus 中的內容。登陸Nexus 然后點擊導航菜單的左邊的構件
搜索。在搜索框中輸入"maven" ,你應該能看到一些像下面的內容。
至此為止,本章的內容已經全部完成。下一章將介紹如何在該環境下創建SSH環境。
轉載于:https://www.cnblogs.com/fatlee/archive/2012/05/18/nexus_maven_eclipse.html
總結
以上是生活随笔為你收集整理的windows下集成maven+eclipse开发环境二:集成maven到eclipse,并使用nexus作为maven仓库...的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: php 之fsockopen(转)
- 下一篇: oracle 11g 下载地址