gwt.team.scottb | b05c900 | 2006-12-12 09:53:31 +0000 | [diff] [blame] | 1 | <project name="ant-gwt" default="build" basedir="."> |
| 2 | <property name="gwt.root" location="../.." /> |
| 3 | <property name="project.tail" value="build-tools/ant-gwt" /> |
| 4 | <import file="${gwt.root}/common.ant.xml" /> |
| 5 | |
| 6 | <target name="compile" description="Compiles this project"> |
| 7 | <mkdir dir="${javac.out}" /> |
| 8 | <gwt.javac> |
| 9 | <classpath> |
| 10 | <pathelement location="${gwt.tools.lib}/apache/ant-1.6.5.jar" /> |
| 11 | </classpath> |
| 12 | </gwt.javac> |
| 13 | </target> |
| 14 | |
| 15 | <target name="build" depends="compile" description="Packages this project into a jar"> |
| 16 | <mkdir dir="${gwt.build.lib}" /> |
| 17 | <gwt.jar destfile="${gwt.build.lib}/${ant.project.name}.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"> |
| 24 | <gwt.checkstyle> |
| 25 | <fileset dir="src" /> |
| 26 | </gwt.checkstyle> |
| 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> |