Maven NetBeans
maven netbeans
netbeans 6.7 及更新的版本已經內置了 maven。對于以前的版本,可在插件管理中心獲取 maven 插件。此例中我們使用的是 netbeans 6.9。 關于 netbeans 的一些特性如下:
- 可以通過 netbeans 來運行 maven 目標。
- 可以使用 netbeans 自身的控制臺查看 maven 命令的輸出。
- 可以更新 maven 與 ide 的依賴。
- 可以在 netbeans 中啟動 maven 的構建。
- netbeans 基于 maven 的 pom.xml 來實現自動化管理依賴關系。
- netbeans 可以通過自己的工作區解決 maven 的依賴問題,而無需安裝到本地的 maven 倉庫,雖然需要依賴的項目在同一個工作區。
- netbeans 可以自動從遠程 moven 庫上下載需要的依賴和源碼。
- netbeans 提供了創建 maven 項目,pom.xml 文件的向導。
- netbeans 提供了 關于maven 倉庫的瀏覽器,使您可以查看本地存儲庫和注冊在外部的 maven 倉庫。
1. 在 netbeans 里打開一個 maven 項目
- 打開 netbeans
- 選擇?file menu > open project?選項
- 選擇項目的路徑,即使用 maven 創建一個項目時的存儲路徑。假設我們創建了一個項目: consumerbanking. 通過?maven 構建 java 項目?查看如何使用 maven 創建一個項目。
目前為止,你已經可以在 netbeans 里看到 maven 項目了。看一下consumerbanking 項目的 libraries 和 test libraries. 你可以發現 netbeans 已經將 maven 所依賴的都添加到了它的構建路徑里了。
2. 在 netbeans 里構建一個 maven 項目
好了,我們來使用 netbeans 的編譯功能來構建這個 maven 項目
- 右鍵點擊 consumerbanking 項目打開上下文菜單。
- 選擇 "clean and build" 選項
maven 將會開始構建該項目。你可以在 netbeans 的終端里查看輸出的日志信息:
netbeans: executing 'mvn.bat -dnetbeans.execution=true clean install' netbeans: java_home=c:\program files\java\jdk1.6.0_21 scanning for projects... ------------------------------------------------------------------------ building consumerbanking task-segment: [clean, install] ------------------------------------------------------------------------ [clean:clean] [resources:resources] [warning] using platform encoding (cp1252 actually) to copy filtered resources, i.e. build is platform dependent! skip non existing resourcedirectory c:\mvn\consumerbanking\src\main\resources [compiler:compile] compiling 2 source files to c:\mvn\consumerbanking\target\classes [resources:testresources] [warning] using platform encoding (cp1252 actually) to copy filtered resources, i.e. build is platform dependent! skip non existing resourcedirectory c:\mvn\consumerbanking\src\test\resources [compiler:testcompile] compiling 1 source file to c:\mvn\consumerbanking\target\test-classes [surefire:test] 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.023 sec results : tests run: 1, failures: 0, errors: 0, skipped: 0 [jar:jar] building jar: c:\mvn\consumerbanking\target\consumerbanking-1.0-snapshot.jar [install:install] installing c:\mvn\consumerbanking\target\consumerbanking-1.0-snapshot.jar to c:\users\gb3824\.m2\repository\com\companyname\bank\consumerbanking\ 1.0-snapshot\consumerbanking-1.0-snapshot.jar ------------------------------------------------------------------------ build successful ------------------------------------------------------------------------ total time: 9 seconds finished at: thu jul 19 12:57:28 ist 2012 final memory: 16m/85m ------------------------------------------------------------------------
3. 在 netbeans 里運行應用程序
現在,右鍵點擊 app.java 文件。選擇 run file 選項。你可以在終端看到如下結果:
netbeans: executing 'mvn.bat -dexec.classpathscope=runtime -dexec.args=-classpath %classpath com.companyname.bank.app -dexec.executable=c:\program files\java\jdk1.6.0_21\bin\java.exe -dnetbeans.execution=true process-classes org.codehaus.mojo:exec-maven-plugin:1.1.1:exec' netbeans: java_home=c:\program files\java\jdk1.6.0_21 scanning for projects... ------------------------------------------------------------------------ building consumerbanking task-segment: [process-classes, org.codehaus.mojo:exec-maven-plugin:1.1.1:exec] ------------------------------------------------------------------------ [resources:resources] [warning] using platform encoding (cp1252 actually) to copy filtered resources, i.e. build is platform dependent! skip non existing resourcedirectory c:\mvn\consumerbanking\src\main\resources [compiler:compile] nothing to compile - all classes are up to date [exec:exec] hello world! ------------------------------------------------------------------------ build successful ------------------------------------------------------------------------ total time: 1 second finished at: thu jul 19 14:18:13 ist 2012 final memory: 7m/64m ------------------------------------------------------------------------