RE: using jdk1.5alpha for javac

2004-01-22 Thread Dominique Devienne
> From: Antoine Lévy-Lambert [mailto:[EMAIL PROTECTED] > I am not sure whether you need source="1.5" > fork="true" and executable=".." should be enough. To use the new 1.5 features probably ;-) I think Stefan added support for the source="1.5" in CVS HEAD only. --DD -

Re: using jdk1.5alpha for javac

2004-01-22 Thread Antoine Lévy-Lambert
James Black wrote: Hello, I am trying to figure out how to get the javac task to work, but I am having a problem with one option. I am trying Everything works until I try source="1.5", then I get an error. I want to start trying to use some of the new features (such as autoboxing) and see

RE: ZipException from axis-java2wsdl

2004-01-22 Thread Buckland, Ramon
Ahh As often, I answered the problem Issue was: -- Getting a ZIPException when running the axis-java2wsdl task Solution was: - My classpath, when declaring the ant-task was including the *.class files (compiled ready to be wsdl'd). The Classloader found these

Ant and Starteam 1.54

2004-01-22 Thread gareth . addison
Has anyone succeeded in getting ANT to work with Starteam 1.54? I have included the starteam54.jar file in my path although the bulid fails with the error message : BUILD FAILED: java.lang.ExceptionInInitializerError Any help would be appreciated. Cheers, Gareth ---

RE: forked javac task runs out of memory

2004-01-22 Thread Anderson, Kajsa
I use ... >From the manual: "The maximum size of the memory for the underlying VM, if javac is run externally; ignored otherwise. Defaults to the standard VM memory setting." I think you read this backwards - it says it's ignored if javac is _not_ running externally. If you think about it, this

forked javac task runs out of memory

2004-01-22 Thread Eric Wood
I am running a javac task against a 1.2.2 compiler, but it is running out of memory. The javac task documentation says that there is a attribute for setting the Max memory size (memoryMaximumSize), but it says that it is ignored if you are running javac externally. How do I set increase the me

RE: delete cvs dirs

2004-01-22 Thread Ciramella, EJ
whoops, the following works... -Original Message- From: Ciramella, EJ [mailto:[EMAIL PROTECTED] Sent: Thursday, January 22, 2004 3:15 PM To: 'Ant Users List' Subject: delete cvs dirs I would like to delete all the CVS directories in the build tree. Here

Re: delete cvs dirs

2004-01-22 Thread Matt Benson
--- "Ciramella, EJ" <[EMAIL PROTECTED]> wrote: > > > > > > What am I doing wrong? Try moving the defaultexcludes attribute to the fileset. -Matt __ Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it! http://webhostin

delete cvs dirs

2004-01-22 Thread Ciramella, EJ
I would like to delete all the CVS directories in the build tree. Here is my target: Here is the message I get and nothing gets deleted: [delete] DEPRECATED - Use of the implicit FileSet is deprecated. Use a nested fileset element instead. What am I doing wrong