On Thu, 27 Jun 2002, <[EMAIL PROTECTED]> wrote:

> Please can anybody tell me how to include all jars found in JBoss & 
> JWSDP dir without listing them all ??

So many way, chose the one you like best ...

<path id="combined">
  <path refid="base.path" />
  <path refid="additional.path" />
</path>

<javac ... classpathref="combined" ... />

or

<javac no-classpath-ref>
  <classpath>
    <path refid="base.path" />
    <path refid="additional.path" />
  </classpath>
</javac>

or

<javac classpathref="base.path">
  <classpath refid="additional.path" />
</javac>

or 

...

Stefan

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

Reply via email to