Re: junit.framework.AssertionFailedError: Forked Java VM exited abnormally

2009-08-18 Thread prashant.raut
I was also facing the same problem. There was a problem when you run ant task, your servers should be up. If by mistake your servers are not up and you try to run task, it will fail with the same error. Hope it will help you. Thanks, Prahsant avalanche333 wrote: > > I am using Ant 1.7.1 and

Re: Unable to delete file

2009-08-18 Thread Brian Pontarelli
Sorry for my last post. Just saw maven and ivy and figured the thread had shifted from the subject. Is the file locked? There are tools out there to check if some process has a lock on a file. It could also be a permission issue. Sometimes the file is also being held by the OS and you can't

Re: Unable to delete file

2009-08-18 Thread glenn opdycke-hansen
I recall that an Ant build on a windows machine could have problems on delete because an extra file explorer window was open on the folder and held a lock preventing the delete. Good luck on you issue. -glenn

Re: AW: exec on batch file causes build to hang

2009-08-18 Thread Scott Stark
Sascha Ernst wrote: > Perhaps this helps Wow, that's some crazy code there! :-) Well, it does open a new window, but unfortunately the original build still doesn't complete in the first window. Sigh... I'm going to go after the developer who wrote this crazy java p

RE: Unable to delete file

2009-08-18 Thread Boring, Jeff W (N-Viper)
Derek - No. It's just a normal windows pc with NTFS. Greg - I'm working on it. Thanks for asking! Jeff -Original Message- From: Cole, Derek E Sent: Tuesday, August 18, 2009 3:28 PM To: Ant Users List Subject: RE: Unable to delete file Is the file being stored on an NFS? -Origina

RE: Unable to delete file

2009-08-18 Thread Cole, Derek E
Is the file being stored on an NFS? -Original Message- From: Greg Roodt [mailto:gro...@gmail.com] Sent: Tuesday, August 18, 2009 2:12 PM To: Ant Users List Subject: Re: Unable to delete file Im sure the intentions are good, but these suggestions are not solving the problem at hand. Jeff

Re: Unable to delete file

2009-08-18 Thread Greg Roodt
Im sure the intentions are good, but these suggestions are not solving the problem at hand. Jeff, I suggest giving us a bit more to work with. Is there any easy way to reproduce the behavior you are seeing? Its almost certainly some sort of file path problem. On Tue, Aug 18, 2009 at 7:03 PM, Br

Re: Unable to delete file

2009-08-18 Thread Brian Pontarelli
Another option is using Savant. Savant provides a nice wrapper around Ant that allows you to create plugins which can be used between projects. The plugins are simply Ant build scripts which are downloaded prior to executing Ant. It also allows you to create targets specific to your proje

RE: Unable to delete file

2009-08-18 Thread Boring, Jeff W (N-Viper)
Maven is not an option but thanks guys for the opinions! Any ideas about the unable to delete? Jeff Lockheed Martin -Original Message- From: Dominique Devienne [mailto:ddevie...@gmail.com] Sent: Tuesday, August 18, 2009 12:29 PM To: Ant Users List Subject: Re: Unable to delete fi

Re: Unable to delete file

2009-08-18 Thread Dominique Devienne
On Tue, Aug 18, 2009 at 10:21 AM, Martin Gainty wrote: > here in the US DOD vendors are converting their build.xml and implementing to > maven for: > offline repository(secure from middle-eastern attackers) > version-specific SCM tagging > security (ability to enforce SSH handshake to ftp via sftp

RE: Unable to delete file

2009-08-18 Thread Martin Gainty
Jeff- here in the US DOD vendors are converting their build.xml and implementing to maven for: offline repository(secure from middle-eastern attackers) version-specific SCM tagging security (ability to enforce SSH handshake to ftp via sftp and scp) http://www.sonatype.com/people/2009/04/how-to-

AW: exec on batch file causes build to hang

2009-08-18 Thread Sascha Ernst
Hello, Perhaps this helps This opens a new window, starts your program in this windows and continues With the build script. If you change the 2nd /c to /k the buildscripts stops until your program stops and the windows closes. BUT: because of the non-existing coup

Re: exec on batch file causes build to hang

2009-08-18 Thread Scott Stark
David Weintraub wrote: > > > Can you run the batch file outside of Ant from the command line without > the > > process hanging? > I've discovered that running "start IC_start.bat" from the command line opens the process in a new window and returns control to the executing window (on Windows XP).

Unable to delete file

2009-08-18 Thread Boring, Jeff W (N-Viper)
We have a 20+ Java projects (Eclipse Projects) each with its own build.xml. We group projects into components; every component has a build.xml for building the projects in the component. The component build.xml files are nothing more than ant (element) calls delegating to the project builds. Finall

Reg:Zipping and deleting files on the basis of timestamp

2009-08-18 Thread S G
Hi,     I want to zip and then delete the selected files from the src folder.I am using following 2 targets.                

junit: Custom Formatter - Access to TestCase

2009-08-18 Thread Benz, Michael
Dear users, we extended 'junit.framework.TestCase' (let's call it CustomTestCase) to include some custom information about a test run. Basically we execute a bunch of TestSteps in a TestCase, gather the results and evaluate in the end. We would like to write this information to xml, with a cus