Re: Configurable builds, with multiple components

2002-11-06 Thread Primoz . Prislan
by 'hand' and not using 'depends' attribute. About new Ant : I don't no if there are any direct improvments about your needs, but I use last version (1.5.1) and it works great. You should check version histroy, but I suggest you the last version. Primoz Prislan

Re: Checking existence of property

2002-10-23 Thread Primoz . Prislan
Use Fail task with if/unless attribute. Prmoz Prislan. Leahy,

RE: Checking existence of property

2002-10-23 Thread Primoz . Prislan
Check your Ant versoin. I use 1.5.1 and it works. Example from my build file: fail if=testFailed/ Primoz Prislan. Leahy

Re: IDE

2002-10-18 Thread Primoz . Prislan
I use IntelliJ Idea and it works perfectly with Ant. Primoz Prislan. George

RE: IDE

2002-10-18 Thread Primoz . Prislan
Do you mean ant source file? Idea aloows you to open and edit ant scripts. Primoz. Chappell, Simon P

Re: Condition Task Question

2002-10-18 Thread Primoz . Prislan
Actually every ant target can have if or unless attribute. That means that target will be executed only if property is (or is not) set. You can use it like this: target if=blabla ... Primoz.

re: IDE

2002-10-18 Thread Primoz . Prislan
I have same problem(s). Primoz. Steve

Re: vssget - vsspath[] how ?

2002-10-17 Thread Primoz . Prislan
As I know vssget co does not support this even VisualSource Safe does. But you can use file mask (like *.jar) or you can get whole project (directory). Primoz Prislan

Re: property file

2002-10-17 Thread Primoz . Prislan
There will be now problems till you not use same property names in both files. In that case properties from file which will be loaded first, will be used. Primoz Prislan

Re: build.xml file - question

2002-10-14 Thread Primoz . Prislan
Take care about character case - file should be named build.xml and not Build.xml or something else. Primoz Prislan. Lisa

Re: Line feed code in string

2002-10-11 Thread Primoz . Prislan
On Fri, 11 Oct 2002, Primoz Prislan [EMAIL PROTECTED] wrote: Does anybody

RE: Visual sourceSafe recursive parameter

2002-10-11 Thread Primoz . Prislan
IT is bug! I just check command line generated by vsscheckout task -there is not -R switch which is responsible for this. God help us! Primo.

Line feed code in string

2002-10-10 Thread Primoz . Prislan
Does anybody know hot to place the new line code (character) in string in Ant script. I just want text to be splitted in few lines. I tried \n but it doesn't work. Primoz.