Re: Force PATH env variable - Enabling .DLL loading

2006-01-12 Thread Steve Loughran
Dominique Devienne wrote: On 1/10/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: If a .dll depends on another .dll, then it must be found in the system-specific, on Windows the Path (on *nix, LD_LIBRARY_PATH usually). So to be platform independend you use both? java env value=${thePath}

Re: EJB compile

2006-01-12 Thread Steve Loughran
Uri Zeituni wrote: Hi, I need to compile my Beans: create stubs and skeletons. I need to deploy them on Websphere. Does anyone knows how to do that? I saw that ejbc task is supported only for Weblogic, in addition I did not see any EJB compile task defined in Websphere's ANT tasks. Can anyone

replaceregex, only the first match

2006-01-12 Thread Rebhan, Gilbert
Hi, i have problem with replaceregex. my script uses a xmlpropertyfile which is generated by another process.Sometimes there are doubled propertynames in that file i have to = 1. load the xmlpropertyfile, check for doubled properties 2. if doubled properties are found, i have to delete the

Re: replaceregex, only the first match

2006-01-12 Thread Andrew Goktepe
Remove the tokenfilter tags, and then your script will only replace the first occurrence. copy file=C:/test/props.xml tofile=C:test/propss.xml filterchain replaceregex byline=false pattern=lt;vers.modul\..+ replace=/ replaceregex byline=false pattern=lt;vers.module.+

Re: running junit from ant

2006-01-12 Thread Lothar Krenzien
Here's an extract of the diagnostic output (ant -diagnostic) : --- Ant diagnostics report --- Apache Ant version 1.6.5 compiled on June 2 2005 --- Implementation Version (JDK1.2+ only) --- core tasks :

Classpath

2006-01-12 Thread Paulo Jorge Guedes
Hi, I created an enterprise project with NetBeans and I need to build it with ant, from the command line. I'm having a problem with the classpath. I need to import javax.ejb.* but it won't find the proper jar (j2ee.jar). The only way I can make ant to find it is setting the attribute classpathref

RE: replaceregex, only the first match

2006-01-12 Thread Rebhan, Gilbert
Hi, Oops, of course, missed that , thanks !! I've used that before, but didn't remember ;-) btw, there are some gotchas i regularly run in, i.e. when using equals arg1=${foo} arg2=bla/ you have to use the syntax ${} but when using isset property=foo/ you have to write it without ${}

specifying include files in a lib in the war

2006-01-12 Thread General Email
I'd like to specify a list of files to include in the lib inside a war task. Looks like this: lib dir=c:/lib includes name=webService.jar, common.jar, utils.jar,/ /lib lib specifies a fileset which I though supported includes

Re: specifying include files in a lib in the war

2006-01-12 Thread Petar Tahchiev
On 12/01/06, General Email [EMAIL PROTECTED] wrote: I'd like to specify a list of files to include in the lib inside a war task. Looks like this: lib dir=c:/lib includes name=webService.jar, common.jar, utils.jar,/ /lib lib specifies a

Strange behavior with cvstagdiff task

2006-01-12 Thread Scott, Brian
Hello friends - I'm experiencing some very strange behavior when specifying multiple values in the package definition. Specifically, if I add multiple space delimited values for package I get a different number of differences reported in tagdiff.html. So, for example, if my tag includes:

Re: specifying include files in a lib in the war

2006-01-12 Thread General Email
That will work with 'include' but it doesn't like 'includes' and then a list of comma separated file names. That is the problem. And yes...forgot the end quote there...typo in my post. Petar Tahchiev [EMAIL PROTECTED] wrote: On 12/01/06, General Email wrote: I'd like to specify a

Re: running junit from ant

2006-01-12 Thread Stefan Bodewig
On Thu, 12 Jan 2006, Lothar Krenzien [EMAIL PROTECTED] wrote: --- Tasks availability --- image : Missing dependency com.sun.media.jai.codec.FileSeekableStream sshexec : Missing dependency

Re: specifying include files in a lib in the war

2006-01-12 Thread Petar Tahchiev
On 12/01/06, General Email [EMAIL PROTECTED] wrote: That will work with 'include' but it doesn't like 'includes' and then a list of comma separated file names. That is the problem. And yes...forgot the end quote there...typo in my post. Petar Tahchiev [EMAIL PROTECTED] wrote: On