summaryrefslogtreecommitdiffstats
path: root/test/resources/logic/throw.xml
blob: 0bea0622d40c7e16ab37f5c5918d78a8eaedf721 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<project default="invalid">
  <target name="invalid">
    <fail>Don't call this file directly.</fail>
  </target>

  <target name="setup">
    <taskdef resource="net/sf/antcontrib/antcontrib.properties">
      <classpath location="${antcontrib.jar}"/>
    </taskdef>
  </target>

  <target name="useRefid" depends="setup">
    <throw refid="testref"/>
  </target>
</project>