samples/build.xml
changeset 121 1725f11cf455
parent 120 6715a003e910
child 122 3611475f83db
     1.1 --- a/samples/build.xml	Sat Jun 14 09:54:59 2008 +0200
     1.2 +++ b/samples/build.xml	Sat Jun 14 09:55:02 2008 +0200
     1.3 @@ -1,5 +1,5 @@
     1.4  <?xml version="1.0" encoding="UTF-8"?>
     1.5 -<project name="apidesign.org" default="build" basedir=".">
     1.6 +<project name="apidesign.org" default="test" basedir=".">
     1.7      <dirset id="examples" dir=".">
     1.8          <include name="**/nbproject"/>
     1.9          <exclude name="apifest1/day3-intermezzo/**"/>
    1.10 @@ -19,5 +19,11 @@
    1.11              <dirset refid="examples"/>
    1.12          </subant>
    1.13      </target>
    1.14 +
    1.15 +    <target name="test" depends="build">
    1.16 +        <subant target="test" antfile="../build.xml" failonerror="false">
    1.17 +            <dirset refid="examples"/>
    1.18 +        </subant>
    1.19 +    </target>
    1.20      
    1.21  </project>