[OJB-developers] build.xml file
Brought to you by:
thma
From: Chris G. <CGr...@de...> - 2002-03-26 02:34:31
|
I made a few changes to the build.xml file this weekend: 1. I moved global properties out into a build.properties file so that they can be modified without having to change the build.xml file. 2. I replaced the classpath and runtime_classpath properties with <path/> elements, and then used those via refid where appropriate. Using a <property/> tag for classpath didn't work too well on Windows machines, since "d:/foo.jar" includes a ":". 3. I moved the target descriptions from the "targets" target into the "description" attribute of each target. Instead of ant targets, you can do ant -projecthelp, which will give you roughly the same results. I've attached the revised build.xml, and a sample build.properties file. I hope you like the changes! Regards, Chris Greenlee |