AW: Setting environment variables

2010-02-25 Thread Knuplesch, Juergen
Thanks for the answers. I use now Option 4a I played around by creating a .bat file that calls the settings .bat file through a Windows system variable. My ANT fills this system variable with the correct path. Afterwards in the .bat file I call ant again, to compile the sources: ANT sets the e

AW: Ant xmlproperty question

2010-02-25 Thread Jan.Materne
You could try . The solution which costs the most time is creating a XSLT which transforms that xml into a property file. Then just load that generated property file. Jan >-Ursprüngliche Nachricht- >Von: canadatom [mailto:tomoodes...@gmail.com] >Gesendet: Donnerstag, 25. Februar 2010

AW: Can I use path as property

2010-02-25 Thread Jan.Materne
${toString:base.path} But you dont "reference" the path with toString or . You get a property which lists all path elements. Jan >-Ursprüngliche Nachricht- >Von: Murray, Mike [mailto:m...@ptc.com] >Gesendet: Freitag, 26. Februar 2010 01:25 >An: Ant Users List >Betreff: RE: Can I use

Re: Publish ivydata for source type

2010-02-25 Thread Claudio Miranda
On Thu, Feb 25, 2010 at 11:26 AM, Mitch Gitman wrote:> > > Claudio, it's a really strange practice to be having one's Ivy cache double > as an Ivy repository. It's almost like you're asking Ivy to blow up. You can > avoid a whole lot of complexity by simply using a local repository that is > disti

RE: Can I use path as property

2010-02-25 Thread Murray, Mike
You can if you convert it to a property. See http://ant.apache.org/manual/CoreTasks/pathconvert.html -Original Message- From: Dalecki, Janusz [mailto:jdale...@tycoint.com] Sent: Thursday, February 25, 2010 5:09 PM To: user@ant.apache.org Subject: Can I use path as property Hi, Can I ref

Re: StarTeam Task

2010-02-25 Thread Eric Fetzer
The below error is using Ant 1.70.  With Ant 1.71, I get: C:\BuildDeployScripts\TestSTCheckout.xml:27: java.lang.ExceptionInInitializerError Thanks, Eric   From: Eric Fetzer To: Ant Users Sent: Thu, February 25, 2010 4:04:37 PM Subject: StarTeam Task I've u

Can I use path as property

2010-02-25 Thread Dalecki, Janusz
Hi, Can I reference the path like structure the same way as property? For example : Can I refer base.path vis ${base.path} somewhere later in my any build file. Cheers, Janusz

StarTeam Task

2010-02-25 Thread Eric Fetzer
I've upgraded my StarTeam versions to 2008 R2 from 2005 R2 and stcheckout has stopped working.  I've got both the 10.4 SDK bin directory and lib directory in my path.  I'm getting the following error: BUILD FAILED java.lang.NoClassDefFoundError: com/starbase/starteam/File     at java.lang.Cl

Re: FTPS Task

2010-02-25 Thread Jean-Baptiste BRIAUD -- Novlog
http://www.lmgtfy.com/?q=ant+ftp+task :-) On Feb 25, 2010, at 16:27 , Adam Peck wrote: > I was just wondering if there is already an existing FTPS task out there. Any > help would be greatly appreciated. > > Thanks, > > Adam > > >

Ant xmlproperty question

2010-02-25 Thread canadatom
Hi all, I am new to ant, here is a simple task I want to do: using xml to parse a xml and get a certain attribute off the xml. example xml [code] http://blahblahblah1,desc1"/> http://blahblahblah2,desc2"/> http://blahblahblah3,desc3"/> [/code] How can I echo a list of project reference?

FTPS Task

2010-02-25 Thread Adam Peck
I was just wondering if there is already an existing FTPS task out there. Any help would be greatly appreciated. Thanks, Adam - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...

Re: Basic question re Antform and conditional execution of tasks

2010-02-25 Thread Patrick Martin
Hello, You probably want to use a booleanProperty instead of a checkSelectionProperty. The checkSelectionProperty allows to select multiple values (you use it only for one). It always set the property (even if empty), so your statements will get executed as they test the property existence and n