AW: Please remove Speech4j, SQLC and Transformica from External tools and tasks

2006-07-27 Thread Jan.Materne
Please stay on the list - summer=vacation-time ;-) That page is ok on SVN [1]. I dont know how often the official site is updated. Is there something broken? Jan [1] http://svn.apache.org/repos/asf/ant/core/trunk/docs/external.html >-Ursprüngliche Nachricht- >Von: Pavel Vlasov [mail

RE: How to use white spaces in a build script

2006-07-27 Thread Rebhan, Gilbert
Sometimes it helps when writing = "'C:/my path with spaces/foobar'" means " ' ' " Regards, Gilbert -Original Message- From: Andreas Holtmann [mailto:[EMAIL PROTECTED] Sent: Thursday, July 27, 2006 3:44 PM To: Ant Users List Subject: How to use white spaces in a build script Hi

FTP

2006-07-27 Thread Venkatesh Vijayakumar04
Hi all I want to ftp files to a local window client using Ant command, I tried using FTP and SCP Ant commands, these commands are working fine while connecting to the UNIX server machine but the same is not working in connecting to window machine. Thanks in advancd Venkatesh.V

Re: Proper location of build.xml file

2006-07-27 Thread prashanth . l/Polaris
There was similar kind of problem sometime back .. I am just pasting the reply below just check if it works for you. The only that comes in my mind is that you can try increasing java heap space. When you start your application that calls ant try specifying this java -Xms256m or try to alloca

Re: Proper location of build.xml file

2006-07-27 Thread prashanth . l/Polaris
fyi prashanth.l/Polaris 07/27/2006 11:24 PM To "Ant Users List" , [EMAIL PROTECTED] cc Subject Re: Proper location of build.xml file There was similar kind of problem sometime back .. I am just pasting the reply below just check if it works for you. The only that comes in my mind is th

Re: ANT problem

2006-07-27 Thread Tommy Nordgren
Jul 27, 2006 kl. 10:14 PM skrev Wojciech Zalecki: Hi all I'm using single ANT script to compile many .net projects. One of the projects in my build requires compilation under framework 2.0 (the rest is 1.1). I want to change my script so that in particular moment , before calling csc task to c

ANT problem

2006-07-27 Thread Wojciech Zalecki
Hi all I'm using single ANT script to compile many .net projects. One of the projects in my build requires compilation under framework 2.0 (the rest is 1.1). I want to change my script so that in particular moment , before calling csc task to compile 2.0 project , env var PATH is set by running p

Re: Proper location of build.xml file

2006-07-27 Thread Laura Stewart
Thanks everyone. By placing the build.xml file in my trunk folder and setting ANT_OPTS="-Xms512m -Xmx512m" my problem was resolved. Appreciate all of the help! Laura On 7/27/06, Martin Gainty <[EMAIL PROTECTED]> wrote: plave the build.xml in your current folder M- *

How to filter out all exceptions from the JUnit task's test failures

2006-07-27 Thread James Adams
I am running some JUnit tests through Ant's junit task, and I am hoping to be able to filter out most of the exceptions which are currently displayed in the failure reports. I have set filtertrace="on", but this appears to be the default and it makes no difference. Essentially I just want the

Re: Proper location of build.xml file

2006-07-27 Thread Martin Gainty
plave the build.xml in your current folder M- * This email message and any files transmitted with it contain confidential information intended only for the person(s) to whom this email message is addressed. If you have received t

Re: Proper location of build.xml file

2006-07-27 Thread Martin Gainty
Read and understand this http://java.sun.com/docs/hotspot/VMOptions.html by altering the configuration for your JVM_ARGS run java -Xrunhprof on a normally running Java App > out1.lst go to aberrant code java -Xrunhprof abberantApp > out2.lst Note the deltas between out1.lst and out2.lst on star

RE: Proper location of build.xml file

2006-07-27 Thread Anderson, Rob (Global Trade)
Your JVM ran out of memory. Hard to say why whithout seeing the build.xml. -Rob A > -Original Message- > From: Laura Stewart [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 27, 2006 10:33 AM > To: Ant Users List > Subject: Re: Proper location of build.xml file > > Correction, the mess

Re: Proper location of build.xml file

2006-07-27 Thread Laura Stewart
Correction, the message is: BUILD FAILED C:\Authoring\Derby\Derby1057\trunk\build.xml:72: The following error occurred while executing this line: C:\Authoring\Derby\Derby1057\trunk\build.xml:93: The following error occurred while executing this line: java.lang.OutOfMemoryError: Java heap space T

Re: Proper location of build.xml file

2006-07-27 Thread Laura Stewart
Thanks. The build runs now but fails. I get this message: BUILD FAILED C:\Authoring\Derby\Derby1057\trunk\build.xml ile executing this line: C:\Authoring\Derby\Derby1057\trunk\build.xml ile executing this line: java.lang.OutOfMemoryError: Java heap space Any suggestions? Laura On 7/27/06, Dom

Re: Proper location of build.xml file

2006-07-27 Thread Dominique Devienne
the build is almost always at the top level of a project, in trunk in your case. Ant looks for build.xml in the current dir. Use -f path_to_build to find it in a different directory. --DD On 7/27/06, Laura Stewart <[EMAIL PROTECTED]> wrote: Hi - I am trying to work with ANT to generate output fo

Proper location of build.xml file

2006-07-27 Thread Laura Stewart
Hi - I am trying to work with ANT to generate output for Derby documentation. I have ANT installed in this path: C:\Authoring\Derby\apache-ant-1.6.5 When I run ant to build html output for the doc "ref" in a command window, I get a message indicating that build.xml does not exist. I presume that

Re: How to use white spaces in a build script

2006-07-27 Thread Andrew Goktepe
Give an example showing an InfraPath value with spaces, and also show us the compilation task that is failing, along with the actual error message from Ant when you run the script. You need to be more specific than "Ant refuses compilation". -Andrew On 7/27/06, Andreas Holtmann <[EMAIL PROTECTED

Re: How to use white spaces in a build script

2006-07-27 Thread Andrew Goktepe
Where is the path being set (property tag, command line, property file, etc)? Can you post the relevant parts of your script, and the error that you get? -Andrew On 7/27/06, Andreas Holtmann <[EMAIL PROTECTED]> wrote: Hi, I have an ANT task which makes use of a DLL that should be copied fr

binary Diff. with ANT?

2006-07-27 Thread heisch
Hi, I am on the way to build a script to find diffs between same files on different systems... (Differenz in version for ex.) Are there some possibilities to implement this with ant?? Thanks 4 helping.. Beni - To unsubscrib

How to use white spaces in a build script

2006-07-27 Thread Andreas Holtmann
Hi, I have an ANT task which makes use of a DLL that should be copied from a location that contains white spaces in it's path. I did not manage ANT to get rid of the white spaces e.g "C:\Program Files\...". Is there an easy solution? ANT breaks up after the first space. Thanks for your hel

RE: Ear task with update="true" not updating

2006-07-27 Thread Master, Tariq \(Abbeywood\)
Now working. I was pointing to the wrong dir. Then I got the "add the appxml attribute" message. Happy again :) My Bad. -Original Message- From: Master, Tariq (Abbeywood) [mailto:[EMAIL PROTECTED] Sent: 27 July 2006 14:27 To: Ant Users List Subject: Ear task with update="true" not upda

Ear task with update="true" not updating

2006-07-27 Thread Master, Tariq \(Abbeywood\)
I have an ear file containing a war file. The war file is 1 meg. My new war file (same filename) is now 3 meg in filesize. I have been attempting to update the ear file using: It is not occuring though (obviously, I'm doing something wrong!). ant -diagnostics r

RE: SCP Auth Faild

2006-07-27 Thread PHILIPPE Johan
I'm using: Apache Ant version 1.6.5 compiled on June 2 2005 And jsch-0.1.28.jar PuTTY connects with 'SSH2 only' and has only Diffie-Hellman as Key exchange algorithms configured. (Diffie-Hellman group exchange, Diffie-Hellman group 14 and Diffie-Hellman group 1) :-P gremlins, gremlins MVr

RE: telnet task missing a class

2006-07-27 Thread Rémon van Gijn
Yes you're not mistaken Get commons-net-1.4.1.jar that's where the real class is. Met vriendelijke groet, Rémon van Gijn Software Release Coördinator - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai

RE: telnet task missing a class

2006-07-27 Thread Rebhan, Gilbert
sorry forgot the download link ... here you get the needed jar = http://www.ibiblio.org/maven/commons-net/jars/commons-net-1.2.2.jar this version runs fine with ant 1.6.5 / jdk1.4.2_08 / Win2K here Regards, Gilbert -Original Message- From: John Davis [mailto:[EMAIL PROTECTED] Sent:

RE: telnet task missing a class

2006-07-27 Thread Rebhan, Gilbert
You don't need to add the ant-commons-net.jar to the classpath, as = it's only the adapter for commons-net shipped with ant you need the commons-net-1.2.2.jar instead all jars in ant / lib are already in sight for ant btw, if you need that you can get a reference for such jars with ${ant.librar

telnet task missing a class

2006-07-27 Thread John Davis
Hello I am trying to run the telnet task from within an ant script. I get this error: java.lang.NoClassDeffoundError: org/apache/commons/net/telnet/Telnetclient However, I have add the net-commons jar file to my CLASSPATH. export CLASSPATH=$CLASSPATH:/usr/local/apache-ant-1.6.5/lib/ant-common