一个简单完整的ant模版

阅读更多


xml 代码
 
  1. xml version="1.0" ?>  
  2. <project name="structured" default="archive">  
  3. <description>Compiles and Achive [build/class] [dist]description>  
  4.     <target name="init">  
  5.         <mkdir dir="build/classes" />  
  6.         <mkdir dir="dist" />  
  7.     target>  
  8.   
  9.     <target name="compile" depends="init"  
  10.             description="Compiles the source code">  
  11.         <javac srcdir="src" destdir="build/classes" />  
  12.     target>  
  13.     <target name="archive" depends="compile"  
  14.             description="Creates the JAR file">  
  15.         <jar destfile="dist/project.jar" basedir="build/classes" />  
  16.     target>  
  17.   
  18.     <target name="clean" depends="init"  
  19.             description="Removes the temporary directories used">  
  20.         <delete dir="build" />  
  21.         <delete dir="dist" />  
  22.     target> 
  23. project> 

使用时,将你的java源文件按包的结构存放好(如:package myant.test;  应建立myant\test目录,并将对应该包的源文件放在此目录),然后将本build.xml存放在一起,再运行ant.

你可能感兴趣的:(Ant,XML)