I assume this is doable, but I’d like to see the ability to call MyEclipse features from Ant. Something along the lines of:
<taskdef name=”build” classname=”com.myeclipseide.BuildProjectTask”/>
<taskdef name=”deploy” classname=”com.myeclipseide.DeployProjectTask”/>
<target name=”junit”>
<junit>
<test name=”my.test.TestCase”/>
…
</junit>
…
</target>
<target name=”all” depends=”build,junit,deploy”/>
so the build and deploy features can be integrated with Ant.