[Anthill] Are there additional ant properties available to build scripts....

Mark Derricutt mark at talios.com
Wed Jun 30 18:32:11 CDT 2004


Michael Forsberg wrote:

> Are there extra properties available to the ant script during the build?
> Specifically, those like the anthill.publish.dir property.

I tend to use the following:

     <property name="deployDir" location="dist" />
     <property name="dist" location="${deployDir}" />
     <property name="version" value="dev"/>
     <property name="dependency.artifact.dir" value="dependency"/>

deployDir is the publish directory and I default it to a local "dist" 
dir for when building on a dev box.

version is well duh. the version :P  I default that to "dev" for a local 
dev/non-anthill build.

dependency.artifact.dir is the share directory for dependency targets.

There may be others but these are the ones I tend to use.




More information about the Anthill mailing list