Ant的使用 簡單介紹

2021-06-28 11:43:21 字數 912 閱讀 7141

正確的安裝ant和設定好環境變數後,就可以開始執行ant了。

執行ant很簡單,只要輸入ant就可以了

d:\>ant

buildfile: build.xml does not exist!

build failed

d:\>

沒有指定任何引數時,ant會在當前目錄下尋找build.xml檔案。如果找到了就用該檔案作為buildfile。

如果,使用ant的-find選擇,就會在當前目錄的上級目錄查詢build.xml檔案,一直到達檔案系統的根。

d:\>ant -find

上面說得的都是預設的buildfile,要想使用指定的buildfile,可以使用-buildfile file引數,這裡file就是指定的要查詢的buildfile。

d:\>ant -buildfile hibernate-build.xml

也可以在ant命令之後指定執行乙個或者多個target,預設情況下,ant使用標籤中default屬性所指定的target。

d:\>ant -buildfile hibernate-build.xml compile

"complie"就是乙個target

下面來看一些具體的例子

d:\>ant

使用當前目錄下的build.xml執行ant,執行預設的target(也就是標答中default屬性所設寫的target)

d:\>ant -buildfile hibernate-build.xml

使用當前目錄下的hibernate-build.xml執行ant,執行預設的target。

d:\>and -buildfile hibernate-build.xml compile

使用當前目錄下的hibernate-build.xml執行ant,並執行名為"complie"的target。 

ant 非常簡單的ant使用教程

乙個專案目錄的常用方式 myproject lib 庫目錄 classes 目的檔案目錄 src 源檔案目錄 doc api文件目錄 build.xml 這樣,你儘管把想要的.jar檔案丟到lib目錄就可以了,然後如果像我一樣懶的話,用下面的build.xml就可以編譯了。name basedir ...

ant 非常簡單的ant使用教程

乙個專案目錄的常用方式 myproject lib 庫目錄 classes 目的檔案目錄 src 源檔案目錄 doc api文件目錄 build.xml 這樣,你儘管把想要的.jar檔案丟到lib目錄就可以了,然後如果像我一樣懶的話,用下面的build.xml就可以編譯了。name basedir ...

ant 非常簡單的ant使用教程 實踐

乙個專案目錄的常用方式 myproject lib 庫目錄 classes 目的檔案目錄 src 源檔案目錄 doc api文件目錄 build.xml 這樣,你儘管把想要的.jar檔案丟到lib目錄就可以了,然後如果像我一樣懶的話,用下面的build.xml就可以編譯了。name hellworl...