gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 1 | <project name="customchecks" default="build" basedir="."> |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 2 | <property name="gwt.root" location="../.." /> |
| 3 | <property name="project.tail" value="build-tools/customchecks" /> |
| 4 | <import file="${gwt.root}/common.ant.xml" /> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 5 | |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 6 | <target name="compile" description="Compiles this project"> |
| 7 | <mkdir dir="${javac.out}" /> |
| 8 | <gwt.javac> |
| 9 | <classpath> |
| 10 | <pathelement location="${gwt.tools.antlib}/checkstyle-all-4.2.jar" /> |
| 11 | </classpath> |
| 12 | </gwt.javac> |
| 13 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 14 | |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 15 | <target name="build" depends="compile" description="Packages this project into a jar"> |
| 16 | <mkdir dir="${gwt.build.lib}" /> |
| 17 | <gwt.jar> |
| 18 | <fileset dir="src" /> |
| 19 | <fileset dir="${javac.out}" /> |
| 20 | </gwt.jar> |
| 21 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 22 | |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 23 | <target name="checkstyle"> |
| 24 | <!-- NOTE: This project doesn't have the checkstyle rule since it participates in bootstrapping. --> |
| 25 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 26 | |
fabbott@google.com | 0e2dc628 | 2008-08-22 16:09:01 +0000 | [diff] [blame] | 27 | <target name="clean" description="Cleans this project's intermediate and output files"> |
| 28 | <delete dir="${project.build}" /> |
| 29 | <delete file="${project.lib}" /> |
| 30 | </target> |
gwt.team.scottb | 14c5b9d | 2006-12-10 06:06:08 +0000 | [diff] [blame] | 31 | |
| 32 | </project> |