Eclipse下使用Ant

目前的 Eclipse 都集成了 ant ,本文圖示如何在 eclipse 下使用 ant
1. 新建 Java Project- 新建 Java 文件 HelloWorld.java
HelloWorld.java
package example;
public class HelloWorld {
    public static void main(String[] args) {
       System. out .println( "Hello World" );
    }
}
 
2. 在工程根目錄下新建 build.xml
build.xml
<?xml version="1.0" encoding="utf-8"?>
<project default= "main" basedir= "." >
    <target name= "main" depends= "compile, compress" description= "Main target" >
       <echo> Building the .jar file. </echo>
    </target>
    <target name= "compile" description= "Compilation target" >
       <javac srcdir= "${basedir}/src/example" />
    </target>
    <target name= "compress" description= "Compression target" >
       <jar jarfile= "HelloWorld.jar" basedir= "${basedir}/src/example" includes= "*.class" />
    </target>
</project>
此腳本文件內容是編譯 /src/example 下的 java 文件,並就地生成 class 文件,將這個 class 文件打成 jar 包, HelloWorld.jar
此時工程的目錄結構以下圖所示:
右鍵選中 HelloAnt 工程,選擇 Properties
選擇 Builders-New… ,選擇 Ant Build
Name Ant_Builder
Buildfile ${workspace_loc:/HelloAnt/build.xml}
Base Directory ${workspace_loc:/HelloAnt}
(按 「Browse Workspace」 選擇工程根目錄)
Builder 面板中鉤上 Ant_Build ,去掉 Java Builder ,便可編譯執行。
每次編譯時,右鍵 build.xml ,選擇 Run As-Ant Build
此示例工程編譯結果:
Buildfile: D:\dev\Workspaces\J2EE\HelloAnt\build.xml
compile :
compress :
main :
     [ echo ] Building the .jar file.
BUILD SUCCESSFUL
Total time: 281 milliseconds
相關文章
相關標籤/搜索