You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by "Chaganthi, Madhusudan R." <mv...@cdc.gov> on 2000/06/21 21:38:14 UTC

Problem with javac

Hi All

Can someone be kind enough to tell me the number of the message which
discusses the problem of eliminating of copying source files while using the
task javac. I dont have the message with me but I remember the discussion a
few days ago. I compile using javac and there are a bunch of other files
which come along (** supporting files ** it says).


In the same context, what should we do to get the search to work on the
subject too? We have search on date range and mail number range as of now.
Am I right? This would help people like me in not bothering the list about
things that have already been resolved. If there is anything we end users
can do about this search facility, I would be glad to pitch in with whatever
I can do.


Thanks a bunch
Madhu

This is the target definition.

<target name="BiosInventoryItemServer">
<echo message=""/>
<echo message="Compiling All the Server source files Under BiosInventoryItem
.......... "/>
    <javac srcdir="${src.dir}"
           destdir="${wl.serverclasses}"
           classpath="${classpath}"
           debug="on"
           deprecation="on"
           optimize="on" >
      <include name="**/BiosInventoryItem/**"/>
      <exclude name="**/Client/**"/>
      <exclude name="SRPServices/**"/>
    </javac>
<echo message=" .........  done !!! "/>
<echo message=""/>
   </target>