blob: ebbfa40b7ec49b43e3f21275fd6c862b59f1b27d [file] [log] [blame]
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00001<project name="servlet" default="build" basedir=".">
fabbott@google.com0e2dc6282008-08-22 16:09:01 +00002 <property name="gwt.root" location=".." />
3 <property name="project.tail" value="servlet" />
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 <property.ensure name="gwt.user.root" location="${gwt.root}/user" />
7 <property.ensure name="gwt.user.build" location="${gwt.build.out}/user" />
8 <property.ensure name="gwt.user.bin" location="${gwt.user.build}/bin" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00009
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000010 <target name="build" description="Packages this project into a jar">
11 <mkdir dir="${gwt.build.lib}" />
12 <gwt.jar>
13 <fileset dir="${gwt.user.bin}">
14 <exclude name="**/rebind/**" />
15 <exclude name="**/tools/**" />
16 <exclude name="com/google/gwt/json/**" />
17 <exclude name="com/google/gwt/junit/*" />
18 <exclude name="com/google/gwt/junit/client/GWTTestCase.*" />
19 <exclude name="com/google/gwt/junit/remote/**" />
20 <exclude name="com/google/gwt/junit/server/**" />
21 <exclude name="com/google/gwt/benchmarks/*" />
22 </fileset>
23 </gwt.jar>
24 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000025
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000026 <target name="clean" description="Cleans this project's intermediate and output files">
27 <delete file="${project.lib}" />
28 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000029</project>