Home | History | Annotate | Download | only in scripts_bugzilla
      1 <?xml version="1.0"?>
      2 
      3 <project name="Build bugTools.jar" default="buildBugToolsJar" basedir="../">
      4 	<target name="buildBugToolsJar">
      5 	  <echo message="Compiling bugTools ..."/>
      6 	  <delete file="bugTools.jar"/>
      7 	  <delete dir="bin/"/>
      8   	  <mkdir dir="bin"/>
      9 	  <javac 
     10 	  	source="1.4"
     11 	  	target="1.4"
     12 		srcdir="."
     13 	    destdir="bin/"
     14 	    classpath="../org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.6.5/lib/ant.jar"
     15 		includes="src_bugzilla/**/*.java, src_bugzilla/**/messages.properties"/>
     16 	  <echo message="Jarring bugTools.jar ..."/>
     17 	  <jar 
     18 		destfile="bugTools.jar" 
     19 		includes="**/*.class" 
     20 		basedir="bin"
     21 	    update="true"/>
     22 	  <jar 
     23 		destfile="bugTools.jar" 
     24 		includes="**/messages.properties" 
     25 		basedir="src_bugzilla"
     26 	    update="true"/>
     27 	</target>
     28 </project>
     29