• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0"?>
2
3<project name="Build bugTools.zip" default="buildBugToolsZip" basedir="../">
4	<target name="buildBugToolsZip">
5		<property name="zipfile" value="org.eclipse.build.tools_bugTools.zip"/>
6		<ant antfile="scripts_bugzilla/buildBugToolsJar.xml" target="buildBugToolsJar" inheritall="true"/>
7		<echo message="Bundling ${zipfile} ..."/>
8		<delete file="${zipfile}"/>
9		<zip
10			destfile="${zipfile}"
11			includes=".classpath, .project,
12					bugTools.jar,
13					src_bugzilla/**/*,
14					scripts_bugzilla/*,
15					properties/UpdateBugStateTask.properties"
16			basedir="."
17			update="true"/>
18	</target>
19</project>
20