While doing the build i am not abble to commit

2007-02-27 Thread manauwar
While running the build script i am not able to commit below is the attached message please help me in solving this issue http://www.nabble.com/file/6835/build%20fail.txt build fail.txt -- View this message in context: http://www.nabble.com/While-doing-the-build-i-am-not-abble-to-commit-tf33073

test

2007-02-27 Thread Sayed, Irfan (Irfan)

RE: SFTP task

2007-02-27 Thread Rebhan, Gilbert
Hi, -Original Message- From: Dick, Brian E. [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 27, 2007 9:30 PM To: user@ant.apache.org Subject: SFTP task /* I have the FTP task all over my build files, and now I need to use SFTP. I don't see an SFTP task. I only see sftp as a paramete

Re: output dir is being determined by following symlink

2007-02-27 Thread Omry Yadan
try to use explicit target directory in whatever task you are running, and point it to the shadow directory. David Carson wrote: > We have a build environment where we build a 'shadow' of our source > tree consisting of symbolic links to the real source tree. The actual > build takes place in

RE: SFTP task

2007-02-27 Thread Dick, Brian E.
Thanks for the clarification. -Original Message- From: Anderson, Rob (Global Trade) [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 27, 2007 6:39 PM To: Ant Users List Subject: RE: SFTP task > -Original Message- > From: Dick, Brian E. [mailto:[EMAIL PROTECTED] > Sent: Tuesday

Re: SFTP task

2007-02-27 Thread Antoine Levy-Lambert
Hello Dick, Atsuhiko Yamanaka has created a bug report with an implementation of the sftp task. http://issues.apache.org/bugzilla/show_bug.cgi?id=39532 Maybe you can build it yourself and try it. You can also vote for the bug report. Best regards, Antoine On Feb 27, 2007, at 6:38 PM, A

RE: SFTP task

2007-02-27 Thread Anderson, Rob (Global Trade)
> -Original Message- > From: Dick, Brian E. [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 27, 2007 12:30 PM > To: user@ant.apache.org > Subject: SFTP task > > I have the FTP task all over my build files, and now I need > to use SFTP. > I don't see an SFTP task. I only see sftp as a

output dir is being determined by following symlink

2007-02-27 Thread David Carson
We have a build environment where we build a 'shadow' of our source tree consisting of symbolic links to the real source tree. The actual build takes place in this shadow. When I run ant in this shadow, it reads the main .mxml file using the symlink. However, it figures out that the .mxml is a

SFTP task

2007-02-27 Thread Dick, Brian E.
I have the FTP task all over my build files, and now I need to use SFTP. I don't see an SFTP task. I only see sftp as a parameter for the SCP task, but SCP has a completely different syntax from FTP and would require a lot of re-coding. What's the easiest way to get from FTP to SFTP? Later, BEDic

RE: How to best create environment specific properties in an applications property file using ANT

2007-02-27 Thread Anderson, Rob (Global Trade)
This is a common issue. There are several ways to handle the issue. 1. Version a config file for each environment in source control and decide which one to deploy at deployment time. 2. Version a template config file in version control that has placeholders for the real values. Also version a pro

Re: [Junit] How to handle TestSuites correctly

2007-02-27 Thread Anton Vodonosov
Hi, All. I want to run many unit tests I have, but without adding all them manually to ant script. The best way for me is using TestSuite, because it gives maximum flexibility and simplicity comparing to ant scripts. But unfortunately junit task removes original class names of classes added t

RE: Getting the process id of a process started by ANT

2007-02-27 Thread Tim Gordon
Hello Supriya To my knowledge there is no way of killing a process by ID from Java - it's not available as part of the API. Perhaps Sun have done this deliberately as it's a potential security risk - that would make sense. A cleaner way to kill off a process is to get it to shut itself down

Re: Failure to have properties detected from property files within Eclipse for running/debugging

2007-02-27 Thread Omry Yadan
There used to be a bug in eclipse where it ran ant with the wrong working directory. this could be the reason. if you are not already doing it, use the latest eclipse (3.2 at the moment). Robert Segal wrote: Having some issues debugging with Eclipse and ANT. I have some build scripts setu

Re: How to best create environment specific properties in an applications property file using ANT

2007-02-27 Thread Steve Loughran
Eric Wood wrote: This is for a utility/tool called hibernate that we are incorporating into our application and it uses a configuration file called hibernate.cfg.xml that I do not think that I can split. I'm currently using the expandproperties filterread along with loadfile to load the envir