Re: Newbie Question: Installation Issues

2009-10-07 Thread ninoclown
Thanks David! I actually had the JDK installed and environment variable set already. I followed your directions and extracted to the proper directory, so I should be all good. Thanks again! David Weintraub wrote: > > Ant is a Java program, so you need the Java JDK installed. All you need to >

Re: Newbie Question: Installation Issues

2009-10-07 Thread David Weintraub
Ant is a Java program, so you need the Java JDK installed. All you need to do is this: 1. Set the JAVA_HOME environment variable to point to your JDK location. (Hint, install the Java JDK directly under the root of your local drive (like C:\JDK-1.6) and not the default location (C:\Progra

Newbie Question: Installation Issues

2009-10-07 Thread ninoclown
Hello, I am trying to install ANT 1.7.0 so I can install a new CRM in my office. Version 1.7.0 is a prerequisite for this particular CRM - Open CRX. I have the zip file downloaded and the files extracted, but do not know how to actually install. There is a "install" file in the package but it is

Xalan hinders saxon

2009-10-07 Thread Knuplesch, Juergen
Hello, After taking xalan 2.7.1 into Ants lib path, my XSLT using saxon dont work anymore: dsf.comparedsffiles: [xslt] Processing ... [xslt] Loading stylesheet D:\DopeBuildBase\Build\DopeBuildServer\XSLT\compare-dsf.xsl [xslt] compare-dsf.xsl:113:104: Fatal Error! java.lang.Class

Re: AW: How to rename a dir?

2009-10-07 Thread Scot P. Floess
Well there is a rename task - but it was deprecated in favor of ... Maybe the tofile attribute could be renamed to be more obvious? On Wed, 7 Oct 2009, Francis GALIEGUE wrote: On Wed, Oct 7, 2009 at 16:33, Scot P. Floess wrote: Ha ha - me neither! A little misleading based upon the docs ;

Re: How to rename a dir?

2009-10-07 Thread ray . harper
Hi, Quick question ... Are you trying to just rename the dir or are you trying to rename a file and move it to a new dir? If you are trying to do the first, try this instead: I hope this helps ... "Knuplesch, Juergen" 10/07/2009 10:13 AM Please

Re: AW: How to rename a dir?

2009-10-07 Thread Francis GALIEGUE
On Wed, Oct 7, 2009 at 16:33, Scot P. Floess wrote: > > Ha ha - me neither! > > A little misleading based upon the docs ;) > > On the other hand, you may actually want to move directory d to directory d1 (hence creating d1/d) when you use . Maybe a task? -- Francis Galiegue ONE2TEAM Ingénieu

Re: AW: How to rename a dir?

2009-10-07 Thread Scot P. Floess
Ha ha - me neither! A little misleading based upon the docs ;) On Wed, 7 Oct 2009, Knuplesch, Juergen wrote: Thank you! Its not what I expected. Juergen -- Jürgen Knuplesch -Ursprüngliche Nachricht- Von: Scot P. Floess [mailto:sflo...@nc.rr.com] Gesendet: Mittwoch, 7. Oktober 2009

AW: How to rename a dir?

2009-10-07 Thread Knuplesch, Juergen
Thank you! Its not what I expected. Juergen -- Jürgen Knuplesch -Ursprüngliche Nachricht- Von: Scot P. Floess [mailto:sflo...@nc.rr.com] Gesendet: Mittwoch, 7. Oktober 2009 16:21 An: Ant Users List Betreff: Re: How to rename a dir? Try: On Wed, 7 Oct 2009, Kn

Re: How to rename a dir?

2009-10-07 Thread Scot P. Floess
Try: /> On Wed, 7 Oct 2009, Knuplesch, Juergen wrote: Hello, How do I simply rename a directory in ant? When I use move it copies the directory also I just want to rename the name of the directory! Juergen -- Jürgen Knuplesch --

How to rename a dir?

2009-10-07 Thread Knuplesch, Juergen
Hello, How do I simply rename a directory in ant? When I use move it copies the directory also I just want to rename the name of the directory! Juergen -- Jürgen Knuplesch - To unsubscribe, e-mail: user-unsubscr...@ant.apac

RE: Out of memory

2009-10-07 Thread Redmond, Nicole
http://java.sun.com/performance/reference/whitepapers/tuning.html Is just one of numerous locations for these "rules". By the way, they are not rules, they are best practices... Nicole Redmond -Original Message- From: David Leangen [mailto:apa...@leangen.net] Sent: Tuesday, October 06

Re: AW: AW: AW: Out of memory

2009-10-07 Thread Steve Loughran
Knuplesch, Juergen wrote: Hello, I got now the Java profiler on. Maybe I will find out, whats going on. But now javadoc ran outofmemory, probably because of my change from 32Bit to 64Bit java. Use -XX:+UseCompressedOops -best feature of Java 6u15. --

Re: problem while creating jar file using ant task

2009-10-07 Thread Stefan Bodewig
On 2009-10-07, Edumudi Viswanath wrote: > basedir="${build}/classes" >includes="${build}/classes/a/b/c/d/e/**" > /> the includes pattern should be relative to your basedir. includes="a/b/c/d/e/**" BTW, the recommended approach is not to use basedir at all but rather a

problem while creating jar file using ant task

2009-10-07 Thread Edumudi Viswanath
Hi, I need to create jar file using ant task. While creating jar file, it should traverse to innermost directory & pick up all .class from from that folder. The code looks like below. Here, basedir contains "${build}/classes". Classes folder contains different folders and they contain