blob: f929b2d097015b7362815333362bff90dfe0ae31 [file] [log] [blame]
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00001<project name="customchecks" default="build" basedir=".">
fabbott@google.com0e2dc6282008-08-22 16:09:01 +00002 <property name="gwt.root" location="../.." />
3 <property name="project.tail" value="build-tools/customchecks" />
4 <import file="${gwt.root}/common.ant.xml" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00005
fabbott@google.com0e2dc6282008-08-22 16:09:01 +00006 <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.scottb14c5b9d2006-12-10 06:06:08 +000014
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000015 <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.scottb14c5b9d2006-12-10 06:06:08 +000022
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000023 <target name="checkstyle">
24 <!-- NOTE: This project doesn't have the checkstyle rule since it participates in bootstrapping. -->
25 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000026
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000027 <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.scottb14c5b9d2006-12-10 06:06:08 +000031
32</project>