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

Maven NetBeans

maven netbeans

netbeans 6.7 及更新的版本已經(jīng)內(nèi)置了 maven。對于以前的版本,可在插件管理中心獲取 maven 插件。此例中我們使用的是 netbeans 6.9。 關(guān)于 netbeans 的一些特性如下:

  • 可以通過 netbeans 來運行 maven 目標(biāo)。
  • 可以使用 netbeans 自身的控制臺查看 maven 命令的輸出。
  • 可以更新 maven 與 ide 的依賴。
  • 可以在 netbeans 中啟動 maven 的構(gòu)建。
  • netbeans 基于 maven 的 pom.xml 來實現(xiàn)自動化管理依賴關(guān)系。
  • netbeans 可以通過自己的工作區(qū)解決 maven 的依賴問題,而無需安裝到本地的 maven 倉庫,雖然需要依賴的項目在同一個工作區(qū)。
  • netbeans 可以自動從遠(yuǎn)程 moven 庫上下載需要的依賴和源碼。
  • netbeans 提供了創(chuàng)建 maven 項目,pom.xml 文件的向?qū)А?/li>
  • netbeans 提供了 關(guān)于maven 倉庫的瀏覽器,使您可以查看本地存儲庫和注冊在外部的 maven 倉庫。

 

1. 在 netbeans 里打開一個 maven 項目

  • 打開 netbeans
  • 選擇?file menu > open project?選項
  • 選擇項目的路徑,即使用 maven 創(chuàng)建一個項目時的存儲路徑。假設(shè)我們創(chuàng)建了一個項目: consumerbanking. 通過?maven 構(gòu)建 java 項目?查看如何使用 maven 創(chuàng)建一個項目。

目前為止,你已經(jīng)可以在 netbeans 里看到 maven 項目了。看一下consumerbanking 項目的 libraries 和 test libraries. 你可以發(fā)現(xiàn) netbeans 已經(jīng)將 maven 所依賴的都添加到了它的構(gòu)建路徑里了。

 

2. 在 netbeans 里構(gòu)建一個 maven 項目

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

  • 右鍵點擊 consumerbanking 項目打開上下文菜單。
  • 選擇 "clean and build" 選項

maven 將會開始構(gòu)建該項目。你可以在 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 里運行應(yīng)用程序

現(xiàn)在,右鍵點擊 app.java 文件。選擇 run file 選項。你可以在終端看到如下結(jié)果:

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
------------------------------------------------------------------------

下一節(jié):maven intellij

maven 教程

相關(guān)文章