RE: [help] ANT + Clearcase

2007-08-14 Thread sten.rosendahl
Look here for build management tools supporting both ClearCase and Ant: http://damagecontrol.codehaus.org/Continuous+Integration+Server+Feature+Matrix We're using Quickbuild (a.k.a. Luntbuild Professional) with great success. Regards, Sten Rosendahl * Software Configuration Manager * SunGard FRON

RE: [Bug 36641] - Problem in ClearCase task in SCM Optional SCM tasks

2005-09-14 Thread sten.rosendahl
Are you running ant interactively or as a scheduled job? Platform? It certainly looks as if cleartool is not in PATH for the user account running the build script. Sten Rosendahl Kinjal [mailto:[EMAIL PROTECTED] wrote: > I have update my build.xml as follows

RE: how to detect relative or absolute path value

2005-08-26 Thread sten.rosendahl
Well, I've tried location but even if the input property is an absolute path like /usr/tmp, Ant will append basedir and create a property /my/basedir/usr/tmp. I'm using Ant 1.6.2 on Linux. Sten -Original Message- From: Burgess, Benjamin [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 2

how to detect relative or absolute path value

2005-08-24 Thread sten.rosendahl
My Ant script needs to know if a property value is a relative or absolute path in order to decide if to prepend a root path or not. Can Ant do this without custom tasks? Sten Rosendahl - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: Urgent Help Required: Issue with Suse Linux

2005-05-21 Thread sten.rosendahl
Why not try this: > Kapil Bajaj wrote: >Hi All > >I am facing an issue when I am trying to execute Ant Script in Suse >Linux >Environment. I am using Ant Version 1.6.1. I am using exec Tag in >Build.xml to make connection to DB2 Database and then using Exec Tag >again >to execute a

RE: launching Ant from a perl script

2005-03-11 Thread sten.rosendahl
>From the Windows XP on-line help: EXIT [/B] [exitCode] /B specifies to exit the current batch script instead of CMD.EXE. If executed from outside a batch script, it will quit CMD.EXE exitCodespecifies a numeric number. if /B is specified, sets

RE: webbased build and deployment tool

2005-02-22 Thread sten.rosendahl
http://luntbuild.sourceforge.net. The next version will also include security, simpler project setup and more. > -Original Message- > From: Jürgen Schlierf [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 22, 2005 5:37 PM > To: user@ant.apache.org > Subject: webbased build and deplo

RE: capturing build output in Visual Studio .NET - enabling warning/error double clicking

2005-02-11 Thread sten.rosendahl
There is a Visual Studio logger in MSBuild, but I'm not sure that logger is open source. Sten Rosendahl > -Original Message- > From: Jeff Shanholtz [mailto:[EMAIL PROTECTED] > Sent: Friday, February 11, 2005 1:28 AM > To: user@ant.apache.org > Subject: capturing build output in Visual St

RE: Automated Build System

2005-01-11 Thread sten.rosendahl
Yes, it's an open source project at http://luntbuild.sourceforge.net (if you search for "luntbuild" at Google, you'll find their home page at the top of the list...). Version 1.0 was first released in September last year. The main benefits I see are the excellent support for Rational ClearCase, b

RE: Automated Build System

2005-01-11 Thread sten.rosendahl
Luntbuild have a new "build necessary condition" which among other things can trigger a build based on the result of the execution of an ant target or any shell script: ant("/path/to/command.xml", "targetA") == 0 execute("/path/to/command.sh") == 0 If you can do your text parsing in either Ant or

RE: CruiseControl, Ant Hill, Build Monkey...

2005-01-11 Thread sten.rosendahl
Also, take a good look at Luntbuild (http://luntbuild.sourceforge.net). Sten Rosendahl > -Original Message- > From: Ilja Preuss [mailto:[EMAIL PROTECTED] > Sent: Monday, January 10, 2005 2:42 PM > To: 'Ant Users List' > Subject: RE: CruiseControl, Ant Hill, Build Monkey... > > Alan Bro

How does interpret an empty output property

2004-11-10 Thread sten.rosendahl
Hi, I have a macrodef passing on a logfile attribute to exec's output property. If I want as default to have no logfile, how do write this in the macrodef? The easiest logic for me would be if output="" means no redirection as I then could use . Sten Rosendahl ---

line count?

2004-10-28 Thread sten.rosendahl
Is there a filterchain or anoter way to count lines in a file with Ant? Sten Rosendahl - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Importing properties

2004-10-28 Thread sten.rosendahl
Hi, It occurred to me that the way Ant reads property files in imported build scripts is not very modular by default. As the manual explains, to read a property file relative to the current script, you must do the following: But on the other hand, the import task itself uses import path