svn commit: r545087 - /ant/core/trunk/src/main/org/apache/tools/ant/AntClassLoader.java

2007-06-07 Thread kevj
Author: kevj Date: Wed Jun 6 23:59:43 2007 New Revision: 545087 URL: http://svn.apache.org/viewvc?view=rev&rev=545087 Log: -use FileUtils.close Modified: ant/core/trunk/src/main/org/apache/tools/ant/AntClassLoader.java Modified: ant/core/trunk/src/main/org/apache/tools/ant/AntClassLoader.ja

Re: Classloader problems

2007-06-07 Thread Peter Reilly
I was supprised that the you described worked for scp, I think that you have removed the ant-jsch.jar from from $ANT_HOME/lib. I tryed the following without removing ant-jsch.jar from $ANT_HOME/lib and got the expected build failure. build.xml: result: BUI

How to stop a running server with Ant script

2007-06-07 Thread MikeEng
I have my Ant script written to deploy the new version of Server (for java application - "non-web"). Before deploying, I need to stop the running Server. How do I stop the running server using Ant script. It will be great if you can provide sample of the script. Very appreciate for your help. --

[Ant Wiki] Update of "TomaszGorski" by StefanBodewig

2007-06-07 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ant Wiki" for change notification. The following page has been changed by StefanBodewig: http://wiki.apache.org/ant/TomaszGorski The comment on the change is: suspect spam --

RE: How to stop a running server with Ant script

2007-06-07 Thread Anderson, Rob (Global Trade)
This is really a question for the user list, not the dev list. Also, you could be more specific about what kind of server you are using (vendor, version, etc.). Not trying to be rude, but please take a look at this also... http://www.catb.org/~esr/faqs/smart-questions.html -Rob Anderson > -

Re: Classloader problems

2007-06-07 Thread Kevin Jackson
Hi, I was supprised that the you described worked for scp, I think that you have removed the ant-jsch.jar from from $ANT_HOME/lib. Yes as the classloader will find the ant-jsch.jar iin $ANT_HOME/lib and try to load the jsch code from there. I moved it to a different location and worked fine