Re: javac options

2008-06-16 Thread Scot P. Floess
Many of the options you list are the same that javac takes command line. However, for refid its a refid to a classpath variable set up elsewhere in your build script. You might take a look at the online Ant docs w/ regards to path's and refid's... On Mon, 16 Jun 2008, [EMAIL PROTECTED] wro

javac options

2008-06-16 Thread Irfan.Sayed
Hi All, I need to understand the meaning of following lines. I searched lot but did not get anything. Please help. I did not get the meaning of debug,deprecation,optimize,classpath refid options in javac tasks. Regards Irfan.

Re: Setting javac options in Ant

2004-10-04 Thread James Black
Alex Valentine wrote: Thanks so much, the option source="1.4" worked like a charm. There is one more compilier option I would like to do but I'm having trouble finding the correct syntax. I want to display all compilier warnings by doing java -Xlint but how would I add this option in my build file?

Re: Setting javac options in Ant

2004-10-04 Thread Alex Valentine
Thanks so much, the option source="1.4" worked like a charm. There is one more compilier option I would like to do but I'm having trouble finding the correct syntax. I want to display all compilier warnings by doing java -Xlint but how would I add this option in my build file? I apologize for the

Re: Setting javac options in Ant

2004-10-04 Thread James Black
Alex Valentine wrote: Just a quick questions for you folks, recently I tried out java 1.5.0 but I was having trouble building some libs for one of my apps. Becuase the lib I was trying to compile used some old classes, I needed to add the "-source 1.4" modifier to javac. How would I would I add thi

Setting javac options in Ant

2004-10-04 Thread Alex Valentine
Just a quick questions for you folks, recently I tried out java 1.5.0 but I was having trouble building some libs for one of my apps. Becuase the lib I was trying to compile used some old classes, I needed to add the "-source 1.4" modifier to javac. How would I would I add this to my compile task?