blob: b5cff2af635345de27c0390a322091190be70fc9 [file] [log] [blame]
<?xml version="1.0"?>
<!-- ======================================================================
Mar 13, 2005 12:08:06 PM
project
description
naci
====================================================================== -->
<project name="project" default="default">
<description>
description
</description>
<!-- =================================
target: default
================================= -->
<taskdef name="xmlbean" classname="org.apache.xmlbeans.impl.tool.XMLBean" classpath="./lib/xbean.jar;./lib/jsr173_api.jar"/>
<target name="default" >
<delete file="./lib/schemas.jar" />
<delete file="./lib/rlog.jar" />
<path id="xmlbeans.path">
<fileset dir="./lib" includes="*.jar"/>
</path>
<xmlbean
schema="xml/cvstools.xsd"
download="true"
destfile="./lib/schemas.jar"
srconly="false"
srcgendir="./xsrc"
classpathref="xmlbeans.path"
/>
<jar destfile="./lib/rlog.jar">
<fileset dir="./bin" id="id">
<include name="**/*"/>
</fileset>
</jar>
</target>
</project>