blob: 1a981983719579fe34ae9aa18dc75282ad023a55 [file] [log] [blame]
<project name="import-test" default="main" basedir=".">
<echo>Before import</echo>
<import file="imported.xml"/>
<echo message="After import"/>
<target name="import-init">
<echo message="In import-init" />
</target>
<target name="main" depends="imported">
<echo message="In main"/>
</target>
</project>