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