--- Sujan Digumarti <[EMAIL PROTECTED]> wrote:
> I have small problem please let me know how to about it..
> 
> <target name="compile" depends="init" >
> <javac destdir="${temp}" >
> <src path="${src}" />
> <src path="${helper}" />
> </javac>
> </target> 
> 
> i want to exclude all the files in the ${helper} directory, so that only
> those files which have are "imported" by the files in ${src} are
> compiled into ${temp} 

Then don't you want ${helper} on the classpath, not the sourcepath? In
other words, use:

  <target name="compile" depends="init">
    <javac srcdir="${src}" destdir="${temp}">
      <classpath>
        <pathelement location="${helper}"/>
      </classpath>
    </javac>
  </target>

Diane

=====
([EMAIL PROTECTED])



__________________________________________________
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to