Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project name="org.eclipse.swt.motif.hpux.PA_RISC" default="build.jars" basedir="."> |
| 3 | |
| 4 | <target name="init" depends="properties"> |
| 5 | <property name="ws" value="motif"/> |
| 6 | <property name="os" value="hpux"/> |
| 7 | <property name="arch" value="PA_RISC"/> |
| 8 | <property name="fragment" value="org.eclipse.swt.${ws}.${os}.${arch}"/> |
| 9 | <property name="version.suffix" value="_3.1.0"/> |
| 10 | <property name="full.name" value="${fragment}${version.suffix}"/> |
| 11 | <property name="temp.folder" value="${basedir}/temp.folder"/> |
| 12 | <property name="plugin.destination" value="${basedir}"/> |
| 13 | <property name="build.result.folder" value="${basedir}"/> |
| 14 | <property name="destination" value="${basedir}"/> |
| 15 | <property name="plugindir" value="../org.eclipse.swt"/> |
| 16 | <property name="bootclasspath" value=""/> |
Veronika Irvine | 672510b | 2005-05-30 17:47:57 +0000 | [diff] [blame] | 17 | <property name="javacVerbose" value="true"/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 18 | </target> |
| 19 | |
| 20 | <target name="properties" if="eclipse.running"> |
| 21 | <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/> |
| 22 | </target> |
| 23 | |
| 24 | <target name="build.update.jar" depends="init"> |
| 25 | <delete dir="${temp.folder}"/> |
| 26 | <mkdir dir="${temp.folder}"/> |
| 27 | <antcall target="build.jars"/> |
| 28 | <antcall target="gather.bin.parts"> |
| 29 | <param name="destination.temp.folder" value="${temp.folder}/"/> |
| 30 | </antcall> |
| 31 | <zip zipfile="${plugin.destination}/${full.name}.jar" basedir="${temp.folder}/${full.name}" filesonly="false"/> |
| 32 | <delete dir="${temp.folder}"/> |
| 33 | </target> |
| 34 | |
| 35 | <target name="@dot" depends="init" unless="@dot" description="Create jar: @dot."> |
| 36 | <property name="destdir" value="${temp.folder}/@dot.bin"/> |
| 37 | <delete dir="${temp.folder}/@dot.bin"/> |
| 38 | <mkdir dir="${temp.folder}/@dot.bin"/> |
Veronika Irvine | 672510b | 2005-05-30 17:47:57 +0000 | [diff] [blame] | 39 | <javac destdir="${temp.folder}/@dot.bin" verbose="${javacVerbose}" debug="on" failonerror="no" bootclasspath="${bootclasspath}" source="1.3" target="1.2"> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 40 | <src path="${plugindir}/Eclipse SWT/cairo/"/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 41 | <src path="${plugindir}/Eclipse SWT/common/"/> |
| 42 | <src path="${plugindir}/Eclipse SWT/common_j2se/"/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 43 | <src path="${plugindir}/Eclipse SWT/emulated/bidi"/> |
| 44 | <src path="${plugindir}/Eclipse SWT/emulated/coolbar"/> |
| 45 | <src path="${plugindir}/Eclipse SWT/emulated/tabfolder"/> |
| 46 | <src path="${plugindir}/Eclipse SWT/emulated/tray"/> |
| 47 | <src path="${plugindir}/Eclipse SWT/emulated/treetable"/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 48 | <src path="${plugindir}/Eclipse SWT/motif/"/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 49 | <src path="${plugindir}/Eclipse SWT Accessibility/common/"/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 50 | <src path="${plugindir}/Eclipse SWT Accessibility/emulated/"/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 51 | <src path="${plugindir}/Eclipse SWT AWT/common/"/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 52 | <src path="${plugindir}/Eclipse SWT AWT/motif/"/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 53 | <src path="${plugindir}/Eclipse SWT Browser/common/"/> |
| 54 | <src path="${plugindir}/Eclipse SWT Browser/motif/"/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 55 | <src path="${plugindir}/Eclipse SWT Custom Widgets/common/"/> |
| 56 | <src path="${plugindir}/Eclipse SWT Drag and Drop/common/"/> |
| 57 | <src path="${plugindir}/Eclipse SWT Drag and Drop/motif/"/> |
| 58 | <src path="${plugindir}/Eclipse SWT Mozilla/common/"/> |
| 59 | <src path="${plugindir}/Eclipse SWT PI/cairo/"/> |
| 60 | <src path="${plugindir}/Eclipse SWT PI/common/"/> |
| 61 | <src path="${plugindir}/Eclipse SWT PI/common_j2se/"/> |
| 62 | <src path="${plugindir}/Eclipse SWT PI/motif/"/> |
| 63 | <src path="${plugindir}/Eclipse SWT PI/motif_gtk/"/> |
| 64 | <src path="${plugindir}/Eclipse SWT Printing/common/"/> |
| 65 | <src path="${plugindir}/Eclipse SWT Printing/motif/"/> |
| 66 | <src path="${plugindir}/Eclipse SWT Program/cde/"/> |
| 67 | <src path="${plugindir}/Eclipse SWT Program/common/"/> |
| 68 | <src path="${plugindir}/Eclipse SWT Program/gnome/"/> |
| 69 | <src path="${plugindir}/Eclipse SWT Program/motif/"/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 70 | </javac> |
| 71 | <property name="includes" value=""/> |
| 72 | <property name="excludes" value="**/*.java,**/library/,**/package.htm*"/> |
| 73 | <copy todir="${temp.folder}/@dot.bin"> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 74 | <fileset dir="${plugindir}/Eclipse SWT/cairo/" includes="${includes}" excludes="${excludes}"/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 75 | <fileset dir="${plugindir}/Eclipse SWT/common/" includes="${includes}" excludes="${excludes}"/> |
| 76 | <fileset dir="${plugindir}/Eclipse SWT/common_j2se/" includes="${includes}" excludes="${excludes}"/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 77 | <fileset dir="${plugindir}/Eclipse SWT/emulated/bidi" includes="${includes}" excludes="${excludes}"/> |
| 78 | <fileset dir="${plugindir}/Eclipse SWT/emulated/coolbar" includes="${includes}" excludes="${excludes}"/> |
| 79 | <fileset dir="${plugindir}/Eclipse SWT/emulated/tabfolder" includes="${includes}" excludes="${excludes}"/> |
| 80 | <fileset dir="${plugindir}/Eclipse SWT/emulated/tray" includes="${includes}" excludes="${excludes}"/> |
| 81 | <fileset dir="${plugindir}/Eclipse SWT/emulated/treetable" includes="${includes}" excludes="${excludes}"/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 82 | <fileset dir="${plugindir}/Eclipse SWT/motif/" includes="${includes}" excludes="${excludes}"/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 83 | <fileset dir="${plugindir}/Eclipse SWT Accessibility/common/" includes="${includes}" excludes="${excludes}"/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 84 | <fileset dir="${plugindir}/Eclipse SWT Accessibility/emulated/" includes="${includes}" excludes="${excludes}"/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 85 | <fileset dir="${plugindir}/Eclipse SWT AWT/common/" includes="${includes}" excludes="${excludes}"/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 86 | <fileset dir="${plugindir}/Eclipse SWT AWT/motif/" includes="${includes}" excludes="${excludes}"/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 87 | <fileset dir="${plugindir}/Eclipse SWT Browser/common/" includes="${includes}" excludes="${excludes}"/> |
| 88 | <fileset dir="${plugindir}/Eclipse SWT Browser/motif/" includes="${includes}" excludes="${excludes}"/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 89 | <fileset dir="${plugindir}/Eclipse SWT Custom Widgets/common/" includes="${includes}" excludes="${excludes}"/> |
| 90 | <fileset dir="${plugindir}/Eclipse SWT Drag and Drop/common/" includes="${includes}" excludes="${excludes}"/> |
| 91 | <fileset dir="${plugindir}/Eclipse SWT Drag and Drop/motif/" includes="${includes}" excludes="${excludes}"/> |
| 92 | <fileset dir="${plugindir}/Eclipse SWT Mozilla/common/" includes="${includes}" excludes="${excludes}"/> |
| 93 | <fileset dir="${plugindir}/Eclipse SWT PI/cairo/" includes="${includes}" excludes="${excludes}"/> |
| 94 | <fileset dir="${plugindir}/Eclipse SWT PI/common/" includes="${includes}" excludes="${excludes}"/> |
| 95 | <fileset dir="${plugindir}/Eclipse SWT PI/common_j2se/" includes="${includes}" excludes="${excludes}"/> |
| 96 | <fileset dir="${plugindir}/Eclipse SWT PI/motif/" includes="${includes}" excludes="${excludes}"/> |
| 97 | <fileset dir="${plugindir}/Eclipse SWT PI/motif_gtk/" includes="${includes}" excludes="${excludes}"/> |
| 98 | <fileset dir="${plugindir}/Eclipse SWT Printing/common/" includes="${includes}" excludes="${excludes}"/> |
| 99 | <fileset dir="${plugindir}/Eclipse SWT Printing/motif/" includes="${includes}" excludes="${excludes}"/> |
| 100 | <fileset dir="${plugindir}/Eclipse SWT Program/cde/" includes="${includes}" excludes="${excludes}"/> |
| 101 | <fileset dir="${plugindir}/Eclipse SWT Program/common/" includes="${includes}" excludes="${excludes}"/> |
| 102 | <fileset dir="${plugindir}/Eclipse SWT Program/gnome/" includes="${includes}" excludes="${excludes}"/> |
| 103 | <fileset dir="${plugindir}/Eclipse SWT Program/motif/" includes="${includes}" excludes="${excludes}"/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 104 | </copy> |
| 105 | |
| 106 | <mkdir dir="${build.result.folder}/@dot"/> |
| 107 | <copy todir="${build.result.folder}/@dot" failonerror="true"> |
| 108 | <fileset dir="${temp.folder}/@dot.bin"/> |
| 109 | </copy> |
| 110 | <!-- prepare a jar file solely for the download target --> |
| 111 | <jar jarfile="${build.result.folder}/swt.jar" basedir="${temp.folder}/@dot.bin"/> |
| 112 | <delete dir="${temp.folder}/@dot.bin"/> |
| 113 | </target> |
| 114 | |
| 115 | <target name="build.jars" depends="init"> |
| 116 | <available property="@dot" file="${build.result.folder}/@dot"/> |
| 117 | <antcall target="@dot"/> |
| 118 | </target> |
| 119 | |
| 120 | <target name="src.zip" depends="init" unless="src.zip"> |
| 121 | <mkdir dir="${build.result.folder}/"/> |
| 122 | <zip zipfile="${build.result.folder}/src.zip"> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 123 | <fileset dir="${plugindir}/Eclipse SWT/cairo/" includes="**/*.java" excludes=""/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 124 | <fileset dir="${plugindir}/Eclipse SWT/common/" includes="**/*.java" excludes=""/> |
| 125 | <fileset dir="${plugindir}/Eclipse SWT/common/library/"/> |
| 126 | <fileset dir="${plugindir}/Eclipse SWT/common_j2se/" includes="**/*.java" excludes=""/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 127 | <fileset dir="${plugindir}/Eclipse SWT/emulated/bidi" includes="**/*.java" excludes=""/> |
| 128 | <fileset dir="${plugindir}/Eclipse SWT/emulated/coolbar" includes="**/*.java" excludes=""/> |
| 129 | <fileset dir="${plugindir}/Eclipse SWT/emulated/tabfolder" includes="**/*.java" excludes=""/> |
| 130 | <fileset dir="${plugindir}/Eclipse SWT/emulated/tray" includes="**/*.java" excludes=""/> |
| 131 | <fileset dir="${plugindir}/Eclipse SWT/emulated/treetable" includes="**/*.java" excludes=""/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 132 | <fileset dir="${plugindir}/Eclipse SWT/motif/" includes="**/*.java" excludes=""/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 133 | <fileset dir="${plugindir}/Eclipse SWT Accessibility/common/" includes="**/*.java" excludes=""/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 134 | <fileset dir="${plugindir}/Eclipse SWT Accessibility/emulated/" includes="**/*.java" excludes=""/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 135 | <fileset dir="${plugindir}/Eclipse SWT AWT/common/" includes="**/*.java" excludes=""/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 136 | <fileset dir="${plugindir}/Eclipse SWT AWT/motif/" includes="**/*.java" excludes=""/> |
| 137 | <fileset dir="${plugindir}/Eclipse SWT AWT/motif/library/"/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 138 | <fileset dir="${plugindir}/Eclipse SWT Browser/common/" includes="**/*.java" excludes=""/> |
| 139 | <fileset dir="${plugindir}/Eclipse SWT Browser/motif/" includes="**/*.java" excludes=""/> |
Veronika Irvine | b325d7b | 2005-04-29 14:30:24 +0000 | [diff] [blame] | 140 | <fileset dir="${plugindir}/Eclipse SWT Custom Widgets/common/" includes="**/*.java" excludes=""/> |
| 141 | <fileset dir="${plugindir}/Eclipse SWT Drag and Drop/common/" includes="**/*.java" excludes=""/> |
| 142 | <fileset dir="${plugindir}/Eclipse SWT Drag and Drop/motif/" includes="**/*.java" excludes=""/> |
| 143 | <fileset dir="${plugindir}/Eclipse SWT Mozilla/common/" includes="**/*.java,about.html,mpl-v11.txt" excludes=""/> |
| 144 | <fileset dir="${plugindir}/Eclipse SWT Mozilla/common/library/"/> |
| 145 | <fileset dir="${plugindir}/Eclipse SWT PI/cairo/" includes="**/*.java,about.html,mpl-v11.txt" excludes=""/> |
| 146 | <fileset dir="${plugindir}/Eclipse SWT PI/cairo/library/"/> |
| 147 | <fileset dir="${plugindir}/Eclipse SWT PI/common/" includes="**/*.java" excludes=""/> |
| 148 | <fileset dir="${plugindir}/Eclipse SWT PI/common_j2se/" includes="**/*.java" excludes=""/> |
| 149 | <fileset dir="${plugindir}/Eclipse SWT PI/motif/" includes="**/*.java,about.html,lglp-v21.txt" excludes=""/> |
| 150 | <fileset dir="${plugindir}/Eclipse SWT PI/motif/library/"/> |
| 151 | <fileset dir="${plugindir}/Eclipse SWT PI/motif_gtk/" includes="**/*.java,about.html,lglp-v21.txt" excludes=""/> |
| 152 | <fileset dir="${plugindir}/Eclipse SWT PI/motif_gtk/library/"/> |
| 153 | <fileset dir="${plugindir}/Eclipse SWT Printing/common/" includes="**/*.java" excludes=""/> |
| 154 | <fileset dir="${plugindir}/Eclipse SWT Printing/motif/" includes="**/*.java" excludes=""/> |
| 155 | <fileset dir="${plugindir}/Eclipse SWT Program/cde/" includes="**/*.java" excludes=""/> |
| 156 | <fileset dir="${plugindir}/Eclipse SWT Program/cde/library/"/> |
| 157 | <fileset dir="${plugindir}/Eclipse SWT Program/common/" includes="**/*.java" excludes=""/> |
| 158 | <fileset dir="${plugindir}/Eclipse SWT Program/gnome/" includes="**/*.java" excludes=""/> |
| 159 | <fileset dir="${plugindir}/Eclipse SWT Program/gnome/library/"/> |
| 160 | <fileset dir="${plugindir}/Eclipse SWT Program/motif/" includes="**/*.java" excludes=""/> |
Veronika Irvine | 99e7d6f | 2005-06-17 14:41:43 +0000 | [diff] [blame] | 161 | <fileset dir="${plugindir}/Eclipse SWT/common_j2se/" includes="**/*.properties" excludes=""/> |
| 162 | <fileset dir="${plugindir}/Eclipse SWT/common/" includes="**/version.txt" excludes=""/> |
Veronika Irvine | 6005ae0 | 2005-06-16 14:32:29 +0000 | [diff] [blame] | 163 | <fileset dir="${plugindir}" includes="about.html,about_files/" excludes=""/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 164 | </zip> |
| 165 | </target> |
| 166 | |
| 167 | <target name="build.sources" depends="init"> |
| 168 | <available property="src.zip" file="${build.result.folder}/src.zip"/> |
| 169 | <antcall target="src.zip"/> |
| 170 | </target> |
| 171 | |
| 172 | <target name="build.zips" depends="init"> |
| 173 | </target> |
| 174 | |
| 175 | <target name="gather.sources" depends="init" if="destination.temp.folder"> |
| 176 | <mkdir dir="${destination.temp.folder}/${full.name}"/> |
| 177 | <copy file="${build.result.folder}/src.zip" todir="${destination.temp.folder}/${full.name}/"/> |
| 178 | <copy todir="${destination.temp.folder}/${full.name}"> |
| 179 | <fileset dir="${basedir}" includes="about.html,about_files/"/> |
| 180 | </copy> |
| 181 | </target> |
| 182 | |
| 183 | <target name="gather.logs" depends="init" if="destination.temp.folder"> |
| 184 | <mkdir dir="${destination.temp.folder}/${full.name}"/> |
| 185 | <copy file="${temp.folder}/@dot.bin.log" todir="${destination.temp.folder}/${full.name}/"/> |
| 186 | </target> |
| 187 | |
| 188 | <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> |
| 189 | <mkdir dir="${destination.temp.folder}/${full.name}"/> |
| 190 | <copy todir="${destination.temp.folder}/${full.name}" failonerror="true"> |
| 191 | <fileset dir="${build.result.folder}/@dot" includes="**"/> |
| 192 | </copy> |
| 193 | <copy todir="${destination.temp.folder}/${full.name}"> |
| 194 | <fileset dir="${basedir}" includes="fragment.properties,about.html,about_files/,swt*.dll,libswt*.so,libswt*.sl,libswt*.a,libswt*.jnilib,META-INF/"/> |
| 195 | </copy> |
| 196 | <chmod perm="755" dir="${destination.temp.folder}/${full.name}" includes="swt*.dll,libswt*.so,libswt*.sl,libswt*.a,libswt*.jnilib" /> |
| 197 | </target> |
| 198 | |
| 199 | <target name="swtdownload" depends="init"> |
| 200 | <delete dir="${temp.folder}"/> |
| 201 | <mkdir dir="${temp.folder}/swtdownload/"/> |
| 202 | <antcall target="build.jars"/> |
| 203 | <copy file="${build.result.folder}/swt.jar" todir="${temp.folder}/swtdownload"/> |
| 204 | <antcall target="build.sources"/> |
| 205 | <copy file="${build.result.folder}/src.zip" todir="${temp.folder}/swtdownload"/> |
Veronika Irvine | 583e111 | 2005-06-08 20:39:19 +0000 | [diff] [blame] | 206 | <copy file="${plugindir}/build/.project" todir="${temp.folder}/swtdownload"/> |
| 207 | <copy file="${plugindir}/build/.classpath" todir="${temp.folder}/swtdownload"/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 208 | <copy todir="${temp.folder}/swtdownload"> |
| 209 | <fileset dir="${basedir}" includes="about.html,about_files/"/> |
| 210 | <fileset dir="${basedir}" includes="swt*.dll,libswt*.so,libswt*.sl,libswt*.a,libswt*.jnilib,libXm.so.2"/> |
| 211 | </copy> |
| 212 | <chmod dir="${temp.folder}/swtdownload" perm="755" includes="**/lib*"/> |
| 213 | <exec dir="${temp.folder}/swtdownload" executable="zip"> |
Christophe Cornu | d4d7cec | 2005-04-11 15:25:52 +0000 | [diff] [blame] | 214 | <arg line="-r -q -y ${destination}/swt-${buildid}-${ws}-${os}-${arch}.zip ."/> |
Christophe Cornu | f7e6d92 | 2005-04-07 19:51:12 +0000 | [diff] [blame] | 215 | </exec> |
| 216 | <delete dir="${temp.folder}"/> |
| 217 | </target> |
| 218 | |
| 219 | <target name="clean" depends="init"> |
| 220 | <delete dir="${build.result.folder}/@dot"/> |
| 221 | <delete file="${build.result.folder}/src.zip"/> |
| 222 | <delete file="${plugin.destination}/${full.name}.jar"/> |
| 223 | <delete file="${plugin.destination}/${full.name}.zip"/> |
| 224 | <delete dir="${temp.folder}"/> |
| 225 | </target> |
| 226 | |
| 227 | <target name="refresh" depends="init" if="eclipse.running"> |
| 228 | <eclipse.refreshLocal resource="${fragment}" depth="infinite"/> |
| 229 | </target> |
| 230 | |
| 231 | <target name="zip.plugin" depends="init"> |
| 232 | <delete dir="${temp.folder}"/> |
| 233 | <mkdir dir="${temp.folder}"/> |
| 234 | <antcall target="build.jars"/> |
| 235 | <antcall target="build.sources"/> |
| 236 | <antcall target="gather.bin.parts"> |
| 237 | <param name="destination.temp.folder" value="${temp.folder}/"/> |
| 238 | </antcall> |
| 239 | <antcall target="gather.sources"> |
| 240 | <param name="destination.temp.folder" value="${temp.folder}/"/> |
| 241 | </antcall> |
| 242 | <delete> |
| 243 | <fileset dir="${temp.folder}" includes="**/*.bin.log"/> |
| 244 | </delete> |
| 245 | <zip zipfile="${plugin.destination}/${full.name}.zip" basedir="${temp.folder}" filesonly="true"/> |
| 246 | <delete dir="${temp.folder}"/> |
| 247 | </target> |
| 248 | </project> |