gwt.team.bruce | 170f46f | 2006-12-07 22:42:03 +0000 | [diff] [blame] | 1 | <project name="doctool" default="build" basedir=".">
|
| 2 | <property name="gwt.root" location="../.." />
|
| 3 | <property name="project.tail" value="build-tools/doctool" />
|
| 4 | <import file="${gwt.root}/common.ant.xml" />
|
| 5 |
|
gwt.team.bruce | 672efb5 | 2006-12-08 15:38:58 +0000 | [diff] [blame] | 6 | <target name="compile" description="Compiles this project">
|
gwt.team.bruce | 170f46f | 2006-12-07 22:42:03 +0000 | [diff] [blame] | 7 | <mkdir dir="${javac.out}" />
|
| 8 | <gwt.javac>
|
| 9 | <classpath>
|
| 10 | <pathelement location="${gwt.tools.lib}/jdk/tools-1.4.2_09.jar" />
|
| 11 | </classpath>
|
| 12 | </gwt.javac>
|
| 13 | </target>
|
| 14 |
|
gwt.team.bruce | 672efb5 | 2006-12-08 15:38:58 +0000 | [diff] [blame] | 15 | <target name="build" depends="compile" description="Packages this project into a jar">
|
gwt.team.bruce | 170f46f | 2006-12-07 22:42:03 +0000 | [diff] [blame] | 16 | <mkdir dir="${gwt.build.lib}" />
|
| 17 | <gwt.jar>
|
| 18 | <fileset dir="src" />
|
| 19 | <fileset dir="${javac.out}" />
|
| 20 | </gwt.jar>
|
| 21 | </target>
|
| 22 |
|
| 23 | <target name="checkstyle" description="Static analysis of source">
|
gwt.team.bruce | 672efb5 | 2006-12-08 15:38:58 +0000 | [diff] [blame] | 24 | <gwt.checkstyle>
|
| 25 | <fileset dir="src" />
|
| 26 | </gwt.checkstyle>
|
gwt.team.bruce | 170f46f | 2006-12-07 22:42:03 +0000 | [diff] [blame] | 27 | </target>
|
| 28 |
|
| 29 | <target name="clean" description="Cleans this project's intermediate and output files">
|
| 30 | <delete dir="${project.build}" />
|
| 31 | <delete file="${project.lib}" />
|
| 32 | </target>
|
| 33 |
|
| 34 | </project>
|