Re: Handling Circular Dependency

2006-04-24 Thread Stefan Bodewig
On Mon, 24 Apr 2006, Hwa N. Shen <[EMAIL PROTECTED]> wrote: > How do you handle circular dependency in Ant? In general you don't compile files one by one in ant, but all at once - so circular dependencies don't cause a problem: Where this doesn't work as good as having a target per source

Handling Circular Dependency

2006-04-24 Thread Hwa . N . Shen
How do you handle circular dependency in Ant? The following is a build.xml snippet: Doing DocUpdate Doing HTTPfileDownload HTTPfileDownload uses a static method in DocUpdate. Any pointer would be appreciated! Hwa