乙個專案目錄的常用方式:
myproject
|--lib --庫目錄
|--classes --目的檔案目錄
|--src --源檔案目錄
|--doc --api文件目錄
|--build.xml
這樣,你儘管把想要的.jar檔案丟到lib目錄就可以了,然後如果像我一樣懶的話,用下面的build.xml就可以編譯了。
----------
name="hellworld"basedir="./"default="c">
id="libpath">
dir="lib/">
name="**/*.jar"/>
name="c"depends="">
libpath"/>
build.xml 配置:
***************===
乙個最簡單的build.xml
build into $, successfully.
build.properties
note: $ 中dest.dir 就是build.properties中的value
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和設定好環境變數後,就可以開始執行ant了。執行ant很簡單,只要輸入ant就可以了 d ant buildfile build.xml does not exist build failed d 沒有指定任何引數時,ant會在當前目錄下尋找build.xml檔案。如果找到了就用該檔...