Index: /trunk/build.xml
===================================================================
--- /trunk/build.xml	(revision 125)
+++ /trunk/build.xml	(revision 126)
@@ -72,3 +72,21 @@
 
     </target>
+  <!-- =================================================================== -->
+  <!-- Make zip file for distribution that contains Jar and Incidents      -->
+  <!-- =================================================================== -->
+  <target name="zip" depends="package-jars" description="Make zip file">
+        <property name="deploy.dir" value="deploy"/>
+    <zip destfile="${deploy.dir}/ScriptBuilder.zip">
+    <zipfileset     
+         dir="${deploy.dir}"
+         includes="**.jar"
+         filemode="755"
+    />
+    </zip>
+    <zip destfile="${deploy.dir}/ScriptBuilder.zip"
+         basedir="."
+	 includes="Incidents/**"
+         update="true"
+    />
+  </target>
 </project>
