Eung-ju Park wrote:
> dot file is not good for win32 users.
> How about change to build.properties?
> 
> from
>     <property file=".ant.properties"/>
>     <property file="../.ant.properties"/>
> 
> to
>     <property file="build.properties"/>
>     <property file="../build.properties"/>

I use the following conventions:

  build.properties - contains properties read in by the 
    build file and contains information such as version numbers, 
    package names, project name, etc.  This file is a CVS based
    file linked directly with the build file. Build.properties 
    attempts to seperate build state from build actions (keeping
    the actual content of the build file cleaner and asier to 
    understand).

  local.properties - property file that is read in before
    build.properties which cointains the users personal modification
    to the build file.  Generally speaking, the content of 
    build.properties serves as the template for local.properties.  

Cheers, Steve.


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to