| <project name="ant-gwt" default="build" basedir="."> |
| <property name="gwt.root" location="../.." /> |
| <property name="project.tail" value="build-tools/ant-gwt" /> |
| <import file="${gwt.root}/common.ant.xml" /> |
| <target name="compile" description="Compiles this project"> |
| <mkdir dir="${javac.out}" /> |
| <pathelement location="${gwt.tools.lib}/apache/ant-1.6.5.jar" /> |
| <target name="build" depends="compile" description="Packages this project into a jar"> |
| <mkdir dir="${gwt.build.lib}" /> |
| <gwt.jar destfile="${gwt.build.lib}/${ant.project.name}.jar"> |
| <fileset dir="${javac.out}" /> |
| <target name="checkstyle" description="Static analysis of source"> |
| <target name="clean" description="Cleans this project's intermediate and output files"> |
| <delete dir="${project.build}" /> |
| <delete file="${project.lib}" /> |