| <project name="user" default="build" basedir=".">
|
| <property name="gwt.root" location=".." />
|
| <property name="project.tail" value="user" />
|
| <import file="${gwt.root}/common.ant.xml" />
|
| <!-- Platform shouldn't matter here, just picking one -->
|
| <property.ensure name="gwt.dev.jar" location="${gwt.build.lib}/gwt-dev-linux.jar" />
|
| <target name="compile" description="Compile all class files">
|
| <mkdir dir="${javac.out}" />
|
| <pathelement location="${gwt.tools.lib}/junit/junit-3.8.1.jar" />
|
| <pathelement location="${gwt.dev.jar}" />
|
| <target name="build" depends="compile" description="Build and package this project">
|
| <mkdir dir="${gwt.build.lib}" />
|
| <fileset dir="${javac.out}" />
|
| <target name="checkstyle" description="Static analysis of source">
|
| <fileset dir="super/com/google/gwt/emul" />
|
| <fileset dir="super/com/google/gwt/junit/translatable" />
|
| <target name="clean" description="Cleans this project's intermediate and output files">
|
| <delete dir="${project.build}" />
|
| <delete file="${project.lib}" />
|