i have a project that uses a parent ant file
similar to this:
<project name="some-portlet" basedir="." default="deploy">
<import file="../build-common-portlet.xml" />
<target name="test">
<echo message="do foo"/>
RUN TEST FROM PARENT HERE
</target>
</project>
now i want to override the parent test target in this way:
- do some copying of jars needed
- run the test target from the parent file
the first part is no problem, but i do not see a way to call test from the parent file
i want the target to be named test also, so that CI can simply run the test target.
is there a way to call test in ../build-common-portlet.xml ?