blob: 5f47054ac179e257015d19b02fb35b69550e4f2f [file] [log] [blame]
<project>
<target name="init-cp" unless="cp-exists">
<path id="maven.plugin.classpath" location="path-is-missing"/>
</target>
<target name="test">
<condition property="cp-exists">
<isreference refid="maven.plugin.classpath"/>
</condition>
<antcall target="init-cp" inheritall="true"/>
<property name="cp" refId="maven.plugin.classpath"/>
<echo>plugin classpath is: ${cp}</echo>
</target>
</project>