Antlion
Welcome
License
 
How-To Guides
Getting Started
Libraries
Artifacts
Subprojects
Repositories
Policy Strategies
Format Strings
Extending Antlion
FAQ
 
Tutorials
First Tutorial: Simple
 
Ant Tasks
<artifact>
<libraryDef>
<library>
<library-policy>
inner processors
inner repositories
<library-type>
<library-repository>
<library-urlrepository>
<library-mavenrepository>
<library-repositoryset>
<create-artifact>
<subprojects>
<run-subproject>
<replace-target>
 
Optional Tasks
About optional tasks
RegexpTokenFormatter
 
TOC   Prev   Next  
Finishing Touches

Finally, our build file needs targets to make it friendly to developers and automated build systems.

  <target name="main"
      description="Primary developer target"
      depends="compile, test" />
  <target name="all"
      depends="clean, main, dist" />


  <target name="clean"
      description="Clean up the generated files">
    <delete dir="${work.dir}" />
    <delete dir="${dist.dir}" />
  </target>


TOC   Prev   Next  
Document version $Revision: 1.3 $ $Date: 2005/10/31 04:37:57 $

SourceForge Logo
Copyright © 2004-2006, The Antlion Project