Maven Eclipse
maven eclipse
eclipse 提供了一個很好的插件 m2eclipse ,該插件能將 maven 和 eclipse 集成在一起。
在最新的 eclipse 中自帶了 maven,我們打開,windows->preferences,如果會出現下面的畫面:
下面列出 m2eclipse 的一些特點:
- 可以在 eclipse 環境上運行 maven 的目標文件。
- 可以使用其自帶的控制臺在 eclipse 中直接查看 maven 命令的輸出。
- 可以在 ide 下更新 maven 的依賴關系。
- 可以使用 eclipse 開展 maven 項目的構建。
- eclipse 基于 maven 的 pom.xml 來實現自動化管理依賴關系。
- 它解決了 maven 與 eclipse 的工作空間之間的依賴,而不需要安裝到本地 maven 的存儲庫(需要依賴項目在同一個工作區)。
- 它可以自動地從遠端的 maven 庫中下載所需要的依賴以及源碼。
- 它提供了向導,為建立新 maven 項目,pom.xml 以及在已有的項目上開啟 maven 支持。
- 它提供了遠端的 maven 存儲庫的依賴的快速搜索。
在 eclipse 中導入一個 maven 的項目:
- 打開 eclipse
- 選擇 file > import > option
- 選擇 maven projects 選項。點擊 next 按鈕。
- 選擇項目的路徑,即使用 maven 創建一個項目時的存儲路徑。假設我們創建了一個項目: consumerbanking. 通過?maven 構建 java 項目?查看如何使用 maven 創建一個項目。
- 點擊 finish 按鈕。
現在,你可以在 eclipse 中看到 maven 項目。
看一下 consumerbanking 項目的屬性,你可以發現 eclipse 已經將 maven 所依賴的都添加到了它的構建路徑里了。
好了,我們來使用 eclipse 的編譯功能來構建這個 maven 項目。
- 右鍵打開 consumerbanking 項目的上下文菜單
- 選擇 run 選項
- 然后選擇 maven package 選項
maven 開始構建項目,你可以在 eclipse 的控制臺看到輸出日志。
[info] scanning for projects... [info] ------------------------------------------------------------------- [info] building consumerbanking [info] [info] id: com.companyname.bank:consumerbanking:jar:1.0-snapshot [info] task-segment: [package] [info] ------------------------------------------------------------------- [info] [resources:resources] [info] using default encoding to copy filtered resources. [info] [compiler:compile] [info] nothing to compile - all classes are up to date [info] [resources:testresources] [info] using default encoding to copy filtered resources. [info] [compiler:testcompile] [info] nothing to compile - all classes are up to date [info] [surefire:test] [info] surefire report directory: c:\mvn\consumerbanking\target\surefire-reports ------------------------------------------------------- t e s t s ------------------------------------------------------- running com.companyname.bank.apptest tests run: 1, failures: 0, errors: 0, skipped: 0, time elapsed: 0.047 sec results : tests run: 1, failures: 0, errors: 0, skipped: 0 [info] [jar:jar] [info] ------------------------------------------------------------------- [info] build successful [info] ------------------------------------------------------------------- [info] total time: 1 second [info] finished at: thu jul 12 18:18:24 ist 2012 [info] final memory: 2m/15m [info] -------------------------------------------------------------------
現在,右鍵點擊 app.java, 選擇 run as 選項。選擇 as java app
你將看到如下結果:
hello world!