property file

2002-07-15 Thread Boris Garbuzov
I have some problem with ant-reading system properties on windows platform. I would like to define a set of properties available to many ant scripts. 1. If I try to run ant script with many -D parameters, it says, "The input line is too long. The syntax of the command is incorrect." I do n

recursive property assignment

2002-05-31 Thread Boris Garbuzov
Once I tried to accumulate Ant property, namely "classpath", recursively, imitating my batch file set CLASSPATH= set CLASSPATH=%CLASSPATH%;classes set CLASSPATH=%CLASSPATH%;%JUNIT_HOME%\junit.jar set CLASSPATH=%CLASSPATH%;%JFCUNIT_HOME%\jfcunit.jar and it failed, behaved as if every new assignment

recursive property assignment

2002-05-31 Thread Boris Garbuzov
Once I tried to set classpath property recursively, imitating the batch file: -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: java GUI from ANt

2002-05-30 Thread Boris Garbuzov
It was it!1 Thanks very much. --- Try with and see if that fixes it. There could be class loader issues, usually solved by forking. --DD -Original Message- From: Boris Garbuzov [mailto:[EMAIL PROTECTED]] Sent: Thursday

java GUI from ANt

2002-05-30 Thread Boris Garbuzov
I experience some forking, threading or waiting problem. My GUI application dies in a second after start when started from Ant, whereas it normally runs without it. Can somebody give a clue? -- To unsubscribe, e-mail: For additional commands, e-mail:

daily bundle

2002-01-11 Thread Boris Garbuzov
Is it possible to re-subscribe to the list to receive just daily bundles of incomming messages? -- To unsubscribe, e-mail: For additional commands, e-mail:

novice

2002-01-01 Thread Boris Garbuzov
Sorry for novice posting. May be later you can redirect me to proper way for such problems. Now I just do not understand ant's error message D:\boris\lab\CanadianPersonal\build.xml:25: Could not create task of type: ejbjar. Common solutions are to use taskdef to declare your task, or, if this is

subscription

2001-06-04 Thread Boris Garbuzov
Hello to all. Anybody knows how to subscribe for daily collective file instead of individual messages? - "Helliwell, Matthew" wrote: > How about something like: depends="DevBuild,UATBuild"> unless="build.num"> value="C:\ProjHome\ViewName" /> name="DevBuild" if="build.nu

logic

2001-05-17 Thread Boris Garbuzov
Can I do "if" or "cycle" in ant's script? Any other logic?

Re: calling dos start

2001-05-17 Thread Boris Garbuzov
I also have this problem. And I had it before ant sometimes in stand-alone applications saying Runtime.getRuntime().exec("mydoscommand"); Try it in this simple mode first. But I would be curious to hear from specialists why java sometimes can not create runtime process. What it depends on? --