| <project name="buildtools" default="build" basedir=".">
|
| <property name="gwt.root" location=".." />
|
| <property name="project.tail" value="build-tools" />
|
| <import file="${gwt.root}/common.ant.xml" />
|
| <!-- "build" is the default when subprojects are directly targetted -->
|
| <property name="target" value="build" />
|
| <target name="customchecks" description="Build the checkstyle extensions">
|
| <gwt.ant dir="customchecks" />
|
| <target name="doctool" description="Build the doctool">
|
| <gwt.ant dir="doctool" />
|
| <target name="-do" depends="customchecks, doctool" description="Run all subprojects"/>
|
| <target name="build" description="Builds GWT">
|
| <param name="target" value="build" />
|
| <target name="checkstyle" depends="build" description="Static analysis of GWT source">
|
| <param name="target" value="checkstyle" />
|
| <target name="test" depends="build" description="Test GWT">
|
| <param name="target" value="test" />
|