blob: b02f11ef03887a612cef27a7f4ae9bde144c74be [file] [log] [blame]
<!--
Copyright (c) 2004, 2010 BREDEX GmbH.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
-->
<project name="org.eclipse.jubula.client.archive" default="gen-xml-src">
<property name="lib" value="lib"/>
<!-- Set up java.class.path -->
<path id="project.class.path">
<fileset dir="${lib}">
<include name="*.jar"/>
</fileset>
</path>
<target name="gen-xml-src">
<taskdef
name="xmlbean"
classname="org.apache.xmlbeans.impl.tool.XMLBean"
classpathref="project.class.path" />
<xmlbean
schema="model/archiveModel.xsd"
srconly="true"
classgendir="lib/xml"
srcgendir="src-gen"
javasource="1.5" />
</target>
</project>