XConf - a new ant task

2004-09-30 Thread Thomas Czarniecki
http://xconf.sourceforge.net/ Here's a nifty little ant (and command line) task to manipulate XML configuration files. If like me, you have to build a number of "products" off the one code base that only differ in their configuration files, this task is for you. It allows you to have developer leve

Re: and properties weirdness

2004-09-30 Thread Frode E. Moe
On Thu, Sep 30, 2004 at 18:38:43 +0100, Peter Reilly wrote: > Thanks for the error report! > This issue is now fixed in CVS. > A work-around with the current ant code is to place > all targets at the end of the build files. Yes, I noticed you had closed the bug in bugzilla and found the CVS commit

Re: and properties weirdness

2004-09-30 Thread Peter Reilly
Thanks for the error report! This issue is now fixed in CVS. A work-around with the current ant code is to place all targets at the end of the build files. Peter Frode E. Moe wrote: Hi! I am currently experiencing some weirdness when using multiple levels of imported build files. The issue boils do

Re: and properties weirdness

2004-09-30 Thread jfuller
Peter Reilly <[EMAIL PROTECTED]> wrote .. > Yep, > > It is a bug. > Can be done with two files: > > part2.xml > > > > > > part3.xml > > >dir.src is ${dir.src} > > > Dir.src is not set. > Swapping the and in part2.xml gives the correct result. I have confirmed this behavior

Re: and properties weirdness

2004-09-30 Thread Peter Reilly
Yep, It is a bug. Can be done with two files: part2.xml part3.xml dir.src is ${dir.src} Dir.src is not set. Swapping the and in part2.xml gives the correct result. Peter Stefan Bodewig wrote: On Thu, 30 Sep 2004, Frode E. Moe <[EMAIL PROTECTED]> wrote: I am currently experiencing

Re: and properties weirdness

2004-09-30 Thread Stefan Bodewig
On Thu, 30 Sep 2004, Stefan Bodewig <[EMAIL PROTECTED]> wrote: > Smells like a bug, I'm opening a bug report in bugzilla. Stefan - To unsubscribe, e-mail: [EMAIL PROTECT

Re: and properties weirdness

2004-09-30 Thread Stefan Bodewig
On Thu, 30 Sep 2004, Frode E. Moe <[EMAIL PROTECTED]> wrote: > I am currently experiencing some weirdness when using multiple > levels of imported build files. It is an ordering problem, as can be witnessed by looking into Ant's -debug output. Running "ant -f part3.xml -debug" you get ... Impor

and properties weirdness

2004-09-30 Thread Frode E. Moe
Hi! I am currently experiencing some weirdness when using multiple levels of imported build files. The issue boils down to properties not being set, when I expect them to be. I am puzzled, because the ant manual for says that is basically the same as a copy&paste job. I'm attaching four build f

Re: checksum task fails sometimes when it shouldn't

2004-09-30 Thread Stefan Bodewig
On Wed, 29 Sep 2004, Jacob Kjome <[EMAIL PROTECTED]> wrote: > http://archive.apache.org/dist/jakarta/commons/lang/binaries/ > commons-lang-2.0.tar.gz > commons-lang-2.0.tar.gz.md5 fails because it hasn't been generated by the task. Ant's checksum task puts the checksum into a file on its own -

only running junit tests for code that has changed

2004-09-30 Thread Mark Lybarger
is there a way to only run junit tests (via the ant task) when tests and or their dependant classes have changed? our project is starting to get a large amount of tests and it's consuming a bit of build time. tia ~mark - To uns