>>>>> "BT" == Barrie Treloar <[EMAIL PROTECTED]> 

 BT> I have two classpaths; one for compiling the classes and another
 BT> for compiling the test classes.

 BT> If I want to include the first classpath in the test class path I
 BT> find that the existing <classpath> tag does not allow this.  This
 BT> is because Path is still being worked on.

I've been thinking of having a refid or similar attribute to
pathelement. What scared me of - and this is why I didn't want to
implement it right away - was how to avoid infinite recursion.

<path id="path1">
  <pathelement refid="path1" />
</path>

or even

<path id="path2">
  <pathelement refid="path1" />
</path>

<path id="path1">
  <pathelement refid="path2" />
</path>

It is quite easy to detect the first case though.

Comments?

Stefan

Reply via email to