core-jgi/zkwebui/build.xml

30 lines
883 B
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<!-- ======================================================== -->
<!-- Zk Ajax UI (Web UI) -->
<!-- ======================================================== -->
<project name="ZkWebUI" default="plugin" basedir=".">
<description>
This buildfile is used to build the Zk WebUI client.
</description>
<import file="../utils_dev/properties.xml"/>
<target name="clean" description="delete class directory">
2010-07-09 17:02:24 +07:00
<delete>
<fileset dir="../lib/plugins">
2010-07-09 17:02:24 +07:00
<include name="*webui*.jar"/>
</fileset>
2010-07-09 17:02:24 +07:00
</delete>
</target>
<target name="plugin">
<buildPlugin workspaceDirectory="${workspace}"
projectName="zkwebui"
targetPlatformId="target.platform"
destination="../lib"
buildSourceJar="false"
clean="no"/>
</target>
</project>