Re: Re: Re: Issue with javac task

2007-03-29 Thread query
  Hi, Thanks for your response. I had tried compiling java code with debug option enabled earlier. That was working fine. But I want to compile java source with debug option disabled. What may be the reason for the difference in class file size? Can you please let me know the reason? I am a n

RE: Mapped vs UNC

2007-03-29 Thread Robertson, Julie
Yes, that will only create a folder on my machine in my Ant home. I am using properties, I just pasted the path for the email to make it easier to explain. I just tried it again to be sure. Thanks for the help. -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Th

Re: Mapped vs UNC

2007-03-29 Thread Martin Gainty
usually read from a property in build.xml or .properties file then later on,, --- This e-mail message (including attachments, if any) is intended for the use of the individual or entity to which

RE: Problem with condition selection property; Help needed

2007-03-29 Thread Shailesh Sharma
Rob, Thanks for atleast writing something. I am still having that problem. Actually this is the scenario: I am using this build to deploy my application ear files. I have 3 ear files in total. But it could sometimes be less or more than 3. So, this build is a generic script. Bas

Mapped vs UNC

2007-03-29 Thread Robertson, Julie
I am working on an Ant build file that uses the ftp task to copy files to other servers. My problem is I can get it to work fine by using a mapped drive, but when I try and use a UNC path, it just copies the folder structure and files to my Ant directory on my machine. Works:

Re: setting task attributes from properties

2007-03-29 Thread Dominique Devienne
On 3/29/07, Steve Loughran <[EMAIL PROTECTED]> wrote: Vladimir Egorov wrote: > I would like to change the value of a task attribute on the fly, without > editing Ant xml file, by setting a runtime system property like this: > [...] > Do Ant Users feel this would be useful to have in core Ant? Has

Switching JDK's with ANT

2007-03-29 Thread Sean Tiley
Hi there, I have a machine that is responsible for running the ant build scripts for all of our Java projects. On the build machine, I have a mixture of JDK's. IBM JDK (1.4 & 1.5) for WebSphere APPS SUN JDK 1.3, 1.4 and 1.5 for others apps   I would like to be able to specify which JDK should be

Re: javadoc difference between ant 1.6 and ant 1.7

2007-03-29 Thread Xavier Hanin
On 3/29/07, Antoine Levy-Lambert <[EMAIL PROTECTED]> wrote: Hello Xavier, Bonjour Antoine, a -verbose shows the command line used to start javadoc. At least this is what I expect. Not sure to understand. Steve asked 'what does a -verbose log say?' and as answer I attached the verbose log

Re: javadoc difference between ant 1.6 and ant 1.7

2007-03-29 Thread Antoine Levy-Lambert
Hello Xavier, a -verbose shows the command line used to start javadoc. At least this is what I expect. Antoine > > > Bug #41958 > > what does a -verbose run say? > > -

Re: setting task attributes from properties

2007-03-29 Thread Steve Loughran
Vladimir Egorov wrote: Hi Ant Users, I would like to change the value of a task attribute on the fly, without editing Ant xml file, by setting a runtime system property like this: junit.showoutput=true --> get junit to show test output by default java.fork=true --> fork by default etc. W