|
What this is
Other links
The source code<?xml version="1.0"?> <project name="Build bugTools.jar" default="buildBugToolsJar" basedir="../"> <target name="buildBugToolsJar"> <echo message="Compiling bugTools ..."/> <delete file="bugTools.jar"/> <delete dir="bin/"/> <mkdir dir="bin"/> <javac source="1.4" target="1.4" srcdir="." destdir="bin/" classpath="../org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.6.5/lib/ant.jar" includes="src_bugzilla/**/*.java, src_bugzilla/**/messages.properties"/> <echo message="Jarring bugTools.jar ..."/> <jar destfile="bugTools.jar" includes="**/*.class" basedir="bin" update="true"/> <jar destfile="bugTools.jar" includes="**/messages.properties" basedir="src_bugzilla" update="true"/> </target> </project> |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.