Re: (javac task): Compiling depedencies doesn't work...

2002-10-28 Thread Jakub . Valenta
Hi Mika, I use ant just for build so I compile the code with it not more then once a day, and I just delete all .class files so everything gets recompiled every time whatever happens. So just add to the "compile" target and that's it. Probably not the best way but id proved to be enough for m

Re: Excluding lines from files?

2002-09-12 Thread Jakub . Valenta
Hi, I am dealing with Java files. The problem is that our version management software adds to files automatically some information including path. And because some path can include "\u" sequence which prevents compilation and JavaDoc I would like to get rid of the line. The line is already par

Excluding lines from files?

2002-09-12 Thread Jakub . Valenta
Hi all, I would like to ask if it is possible to convince Ant to exclude some lines from files (during copying or so). I was looking at several FilterReaders, but I haven't found any solution. I need to be able to exclude all lines which contain given string. I was bit trying the regexp filter,

How to kill a task started from ant?

2002-08-27 Thread Jakub . Valenta
Hi all, I need (would like to) to start JBoss in from my build file, and then kill it so that the rest of build file can be performed. Follows snippet of the build file where I start the JBoss and in parallel (with some delay) I start other application. ...