gwt.team.scottb | de5869f | 2006-12-08 19:50:24 +0000 | [diff] [blame] | 1 | <project name="samples" default="build" basedir=".">
|
| 2 | <property name="gwt.root" location=".." />
|
| 3 | <property name="project.tail" value="samples" />
|
| 4 | <import file="${gwt.root}/common.ant.xml" />
|
| 5 |
|
| 6 | <!-- "build" is the default when subprojects are directly targetted -->
|
| 7 | <property name="target" value="build" />
|
| 8 |
|
| 9 | <target name="dynatable" description="Build dynatable">
|
gwt.team.scottb | d07fbcf | 2006-12-08 21:12:32 +0000 | [diff] [blame] | 10 | <gwt.ant dir="dynatable" />
|
gwt.team.scottb | de5869f | 2006-12-08 19:50:24 +0000 | [diff] [blame] | 11 | </target>
|
| 12 |
|
| 13 | <target name="hello" description="Build hello">
|
gwt.team.scottb | d07fbcf | 2006-12-08 21:12:32 +0000 | [diff] [blame] | 14 | <gwt.ant dir="hello" />
|
gwt.team.scottb | de5869f | 2006-12-08 19:50:24 +0000 | [diff] [blame] | 15 | </target>
|
| 16 |
|
| 17 | <target name="i18n" description="Build i18n">
|
gwt.team.scottb | d07fbcf | 2006-12-08 21:12:32 +0000 | [diff] [blame] | 18 | <gwt.ant dir="i18n" />
|
gwt.team.scottb | de5869f | 2006-12-08 19:50:24 +0000 | [diff] [blame] | 19 | </target>
|
| 20 |
|
| 21 | <target name="json" description="Build json">
|
gwt.team.scottb | d07fbcf | 2006-12-08 21:12:32 +0000 | [diff] [blame] | 22 | <gwt.ant dir="json" />
|
gwt.team.scottb | de5869f | 2006-12-08 19:50:24 +0000 | [diff] [blame] | 23 | </target>
|
| 24 |
|
| 25 | <target name="kitchensink" description="Build kitchensink">
|
gwt.team.scottb | d07fbcf | 2006-12-08 21:12:32 +0000 | [diff] [blame] | 26 | <gwt.ant dir="kitchensink" />
|
gwt.team.scottb | de5869f | 2006-12-08 19:50:24 +0000 | [diff] [blame] | 27 | </target>
|
| 28 |
|
| 29 | <target name="mail" description="Build mail">
|
gwt.team.scottb | d07fbcf | 2006-12-08 21:12:32 +0000 | [diff] [blame] | 30 | <gwt.ant dir="mail" />
|
gwt.team.scottb | de5869f | 2006-12-08 19:50:24 +0000 | [diff] [blame] | 31 | </target>
|
| 32 |
|
| 33 | <target name="simplexml" description="Build simplexml">
|
gwt.team.scottb | d07fbcf | 2006-12-08 21:12:32 +0000 | [diff] [blame] | 34 | <gwt.ant dir="simplexml" />
|
gwt.team.scottb | de5869f | 2006-12-08 19:50:24 +0000 | [diff] [blame] | 35 | </target>
|
| 36 |
|
| 37 | <target name="-do" depends="dynatable, hello, i18n, json, kitchensink, mail, simplexml" description="Run all subprojects" />
|
| 38 |
|
| 39 | <target name="build" description="Builds GWT">
|
| 40 | <antcall target="-do">
|
| 41 | <param name="target" value="build" />
|
| 42 | </antcall>
|
| 43 | </target>
|
| 44 |
|
| 45 | <target name="checkstyle" depends="build" description="Static analysis of GWT source">
|
| 46 | <antcall target="-do">
|
| 47 | <param name="target" value="checkstyle" />
|
| 48 | </antcall>
|
| 49 | </target>
|
| 50 |
|
| 51 | <target name="test" depends="build" description="Test GWT">
|
| 52 | <antcall target="-do">
|
| 53 | <param name="target" value="test" />
|
| 54 | </antcall>
|
| 55 | </target>
|
| 56 | </project>
|