"Morrison, John" wrote:
>
> I've dummied up a build.xml file. Is this what people are thinking off...?
>
> Comments appreciated.
I think you got the whole thing. My comments follow (mostly clarifications).
You have one thing I would change:
<property file="~/.ant.properties"/>
The tilde technically only works in Unix (or Cygwin). You would have to alter
it like this:
<property file="${user.dir}/.ant.properties"/>
("user.dir" is a system property set by the JVM)
Also, we might want to specify the property "build.deprecation" for deprecation
information during compilation. Projects are free to choose their own default
for that one.
Regarding your comment in the "distclean" about "Delete what?". There are some
projects that generate announcements and place the generated announcement at the
base.dir of the project. There is also the distribution folders that may have
been left over after an "ant dist" call.
The "test" alias is optional.
Lastly, if "printerdocs" is really only meant for users then it should be
renamed to "userdocs". Also, please note that printerfriendly documentation
is something that many professional sites have employed. They have a "Print
This" link that removes all the extraneous formatting. It might be a good
idea to adopt that approach if possible. The idea I had when presenting
this target was that we really need documentation that can be printed out.
most of the projects have the formatting on the documentation so that the
printer cuts off the right side.
>
> J.
>
> =======================================================================
> Information in this email and any attachments are confidential, and may
> not be copied or used by anyone other than the addressee, nor disclosed
> to any third party without our permission. There is no intention to
> create any legally binding contract or other commitment through the use
> of this email.
>
> Experian Limited (registration number 653331).
> Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF
>
>
>------------------------------------------------------------------------------------------------------------------------------------
> Name: build.zip
> build.zip Type: Zip Compressed Data (application/x-zip-compressed)
> Encoding: base64
>
>
>------------------------------------------------------------------------------------------------------------------------------------
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]