samples/build.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:55:07 +0200
changeset 125 3314eb349d4f
parent 122 3611475f83db
child 126 b5492c453889
permissions -rw-r--r--
Routine edits in Determining What Makes a Good API.
jtulach@119
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@125
     2
<project name="apidesign.org" default="build" basedir=".">
jtulach@119
     3
    <dirset id="examples" dir=".">
jtulach@119
     4
        <include name="**/nbproject"/>
jtulach@119
     5
        <exclude name="apifest1/day3-intermezzo/**"/>
jtulach@120
     6
        <exclude name="apifest1/infrastructure/testing-template/**"/>
jtulach@119
     7
    </dirset>
jtulach@119
     8
    
jtulach@119
     9
    
jtulach@119
    10
    <target name="clean">
jtulach@119
    11
        <subant target="clean" antfile="../build.xml">
jtulach@119
    12
            <dirset refid="examples"/>
jtulach@119
    13
        </subant>
jtulach@119
    14
    </target>
jtulach@119
    15
jtulach@119
    16
    <target name="build">
jtulach@119
    17
        <ant dir="libs"/>
jtulach@119
    18
        <subant target="compile" antfile="../build.xml">
jtulach@119
    19
            <dirset refid="examples"/>
jtulach@119
    20
        </subant>
jtulach@119
    21
    </target>
jtulach@119
    22
    
jtulach@119
    23
</project>