gwt.team.bruce | 8a80602 | 2006-12-08 19:36:06 +0000 | [diff] [blame] | 1 | <project name="buildtools" default="build" basedir=".">
|
| 2 | <property name="gwt.root" location=".." />
|
| 3 | <property name="project.tail" value="build-tools" />
|
| 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="customchecks" description="Build the checkstyle extensions">
|
gwt.team.scottb | d07fbcf | 2006-12-08 21:12:32 +0000 | [diff] [blame] | 10 | <gwt.ant dir="customchecks" />
|
gwt.team.bruce | 8a80602 | 2006-12-08 19:36:06 +0000 | [diff] [blame] | 11 | </target>
|
| 12 |
|
| 13 | <target name="doctool" description="Build the doctool">
|
gwt.team.scottb | d07fbcf | 2006-12-08 21:12:32 +0000 | [diff] [blame] | 14 | <gwt.ant dir="doctool" />
|
gwt.team.bruce | 8a80602 | 2006-12-08 19:36:06 +0000 | [diff] [blame] | 15 | </target>
|
| 16 |
|
| 17 | <target name="-do" depends="customchecks, doctool" description="Run all subprojects"/>
|
| 18 |
|
| 19 | <target name="build" description="Builds GWT">
|
| 20 | <antcall target="-do">
|
| 21 | <param name="target" value="build" />
|
| 22 | </antcall>
|
| 23 | </target>
|
| 24 |
|
| 25 | <target name="checkstyle" depends="build" description="Static analysis of GWT source">
|
| 26 | <antcall target="-do">
|
| 27 | <param name="target" value="checkstyle" />
|
| 28 | </antcall>
|
| 29 | </target>
|
| 30 |
|
| 31 | <target name="test" depends="build" description="Test GWT">
|
| 32 | <antcall target="-do">
|
| 33 | <param name="target" value="test" />
|
| 34 | </antcall>
|
| 35 | </target>
|
| 36 | </project>
|