blob: 5d2303119f4624831a5d2907c5ed0bd235f42fe0 [file] [log] [blame]
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00001<project name="dist" default="build" basedir=".">
fabbott@google.com0e2dc6282008-08-22 16:09:01 +00002 <property name="gwt.root" location=".." />
3 <property name="project.tail" value="distro-source" />
4 <import file="${gwt.root}/platforms.ant.xml" />
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +00005
jat@google.com0b1619e2009-09-20 19:33:31 +00006 <import file="common.ant.xml" />
7
8 <property name="project.dist" location="${gwt.build.dist}/${project.distname}.zip" />
9
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000010 <target name="clean" description="Cleans this project's intermediate and output files">
11 <delete dir="${gwt.build.dist}" failonerror="false" />
12 <delete dir="${gwt.build.staging}" failonerror="false" />
jat@google.com0b1619e2009-09-20 19:33:31 +000013 <delete file="${project.dist}" failonerror="false" />
14 </target>
15
16 <target name="build" depends="filter" description="Packages the distro">
17 <!-- TODO: figure out how to share most of this across platforms -->
18 <mkdir dir="${gwt.build.dist}" />
19 <mkdir dir="${gwt.build.out}/samples-scripts"/>
20 <zip destfile="${project.dist}">
21 <!-- jars -->
22 <zipfileset file="${gwt.build.lib}/gwt-dev.jar" prefix="${project.distname}" />
23 <zipfileset file="${gwt.build.lib}/gwt-user.jar" prefix="${project.distname}" />
24 <zipfileset file="${gwt.build.lib}/gwt-servlet.jar" prefix="${project.distname}" />
jlabanca@google.comb24a86b2010-10-22 17:36:00 +000025 <zipfileset file="${gwt.build.lib}/gwt-servlet-deps.jar" prefix="${project.distname}" />
jat@google.com0b1619e2009-09-20 19:33:31 +000026 <zipfileset file="${gwt.build.lib}/gwt-benchmark-viewer.war" prefix="${project.distname}" />
27 <zipfileset file="${gwt.build.lib}/gwt-soyc-vis.jar" prefix="${project.distname}" />
28 <zipfileset file="${gwt.build.lib}/gwt-api-checker.jar" prefix="${project.distname}" />
mrrussell@google.comafe477d2011-08-05 17:55:40 +000029 <zipfileset file="${gwt.build.lib}/requestfactory*.jar" prefix="${project.distname}" />
jat@google.com64a55cb2009-10-16 14:16:57 +000030 <!-- jni libs-->
31 <zipfileset dir="${gwt.build.jni}/windows" prefix="${project.distname}" />
32
rchandia@google.comb88482a2011-02-11 19:12:39 +000033 <!-- external libs -->
34 <zipfileset file="${gwt.tools}/lib/javax/validation/validation-api-1.0.0.GA.jar" prefix="${project.distname}" />
35 <zipfileset file="${gwt.tools}/lib/javax/validation/validation-api-1.0.0.GA-sources.jar" prefix="${project.distname}" />
36
jat@google.com0b1619e2009-09-20 19:33:31 +000037 <!-- raw files -->
38 <zipfileset dir="${dist.resources}" prefix="${project.distname}" />
fabbott@google.com008f27f2009-10-30 19:00:05 +000039 <zipfileset filemode="755" dir="src" prefix="${project.distname}" />
jat@google.com0b1619e2009-09-20 19:33:31 +000040
41 <!-- doc -->
42 <zipfileset dir="${gwt.build.out}" prefix="${project.distname}">
43 <include name="doc" />
44 <include name="doc/html/**" />
45 <include name="doc/css/**" />
46 <include name="doc/javadoc/**" />
47 </zipfileset>
48
49 <!-- samples -->
50 <zipfileset dir="${gwt.build.out}" prefix="${project.distname}">
51 <include name="samples" />
52 <include name="samples/*" />
fabbott@google.com6bdc0f12010-08-25 18:12:04 +000053 <include name="samples/*/build.xml" />
54 <include name="samples/*/pom.xml" />
55 <include name="samples/*/README-MAVEN.txt" />
jat@google.com0b1619e2009-09-20 19:33:31 +000056 <include name="samples/*/src/**" />
57 <include name="samples/*/war/**" />
58 </zipfileset>
59 <zipfileset dir="${gwt.build.out}/samples-scripts" prefix="${project.distname}/samples">
60 <include name="*/*" />
61 </zipfileset>
62 </zip>
63
64 <!--
65 Unzip distro into the staging directory.
66 -->
67 <mkdir dir="${gwt.build.staging}" />
68 <unzip src="${project.dist}" dest="${gwt.build.staging}" />
fabbott@google.com008f27f2009-10-30 19:00:05 +000069 <!-- cute. zipinfo says the zip has good perms, unzip gets it right, but
70 ant <unzip> leaves the perms as non-executable... go figure. -->
71 <chmod perm="uga+rx">
72 <fileset dir="${gwt.build.staging}/gwt-${gwt.version}">
73 <patternset refid="chmod.executables"/>
74 </fileset>
75 </chmod>
fabbott@google.com0e2dc6282008-08-22 16:09:01 +000076 </target>
gwt.team.scottb14c5b9d2006-12-10 06:06:08 +000077</project>