黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Maven Eclipse

maven eclipse

eclipse 提供了一個很好的插件 m2eclipse ,該插件能將 maven 和 eclipse 集成在一起。

在最新的 eclipse 中自帶了 maven,我們打開,windows->preferences,如果會出現(xiàn)下面的畫面:

下面列出 m2eclipse 的一些特點(diǎn):

  • 可以在 eclipse 環(huán)境上運(yùn)行 maven 的目標(biāo)文件。
  • 可以使用其自帶的控制臺在 eclipse 中直接查看 maven 命令的輸出。
  • 可以在 ide 下更新 maven 的依賴關(guān)系。
  • 可以使用 eclipse 開展 maven 項目的構(gòu)建。
  • eclipse 基于 maven 的 pom.xml 來實(shí)現(xiàn)自動化管理依賴關(guān)系。
  • 它解決了 maven 與 eclipse 的工作空間之間的依賴,而不需要安裝到本地 maven 的存儲庫(需要依賴項目在同一個工作區(qū))。
  • 它可以自動地從遠(yuǎn)端的 maven 庫中下載所需要的依賴以及源碼。
  • 它提供了向?qū)?,為建立?maven 項目,pom.xml 以及在已有的項目上開啟 maven 支持。
  • 它提供了遠(yuǎn)端的 maven 存儲庫的依賴的快速搜索。

在 eclipse 中導(dǎo)入一個 maven 的項目:

  • 打開 eclipse
  • 選擇 file > import > option
  • 選擇 maven projects 選項。點(diǎn)擊 next 按鈕。

  • 選擇項目的路徑,即使用 maven 創(chuàng)建一個項目時的存儲路徑。假設(shè)我們創(chuàng)建了一個項目: consumerbanking. 通過?maven 構(gòu)建 java 項目?查看如何使用 maven 創(chuàng)建一個項目。
  • 點(diǎn)擊 finish 按鈕。

現(xiàn)在,你可以在 eclipse 中看到 maven 項目。

看一下 consumerbanking 項目的屬性,你可以發(fā)現(xiàn) eclipse 已經(jīng)將 maven 所依賴的都添加到了它的構(gòu)建路徑里了。

好了,我們來使用 eclipse 的編譯功能來構(gòu)建這個 maven 項目。

  • 右鍵打開 consumerbanking 項目的上下文菜單
  • 選擇 run 選項
  • 然后選擇 maven package 選項

maven 開始構(gòu)建項目,你可以在 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] -------------------------------------------------------------------

現(xiàn)在,右鍵點(diǎn)擊 app.java, 選擇 run as 選項。選擇 as java app

你將看到如下結(jié)果:

hello world!

下一節(jié):maven netbeans

maven 教程

相關(guān)文章