I have a build.xml file:

<!DOCTYPE project [
    <!ENTITY common SYSTEM "file:./common.xml">
    <!ENTITY unittest SYSTEM "file:local-conf/unittest.xml">
]>

<project>
  <target name="target1" description="mytarget1"/>
  &common;
  &unittest;
</project>


And I have a common.xml file:

<target name="init" description="common initialization stuff"/>

And I have a local-conf/unittest.xml file:

<target name="test" description="runs unit tests"/>


Current behavior of IDEA build 638:

The Ant tab shows target1 as available.

Requested feature:

The Ant tab should show target1, init, and test as available.



This feature currently exists in ant proper, but not in IDEA as an
integration feature.


_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-features

Reply via email to