2010-08-20 15:05:06 +07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!-- ============================================= -->
|
2010-08-24 03:18:51 +07:00
|
|
|
<!-- JasperReport Client -->
|
2010-08-20 15:05:06 +07:00
|
|
|
<!-- ============================================= -->
|
|
|
|
|
2010-08-23 18:27:28 +07:00
|
|
|
<project name="JasperReportClient" default="plugin" basedir=".">
|
2010-08-20 15:05:06 +07:00
|
|
|
|
|
|
|
<description>
|
|
|
|
This buildfile is used to build the client subproject within
|
|
|
|
the Adempiere project.
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<import file="../utils_dev/properties.xml"/>
|
|
|
|
|
|
|
|
<target name="init" description="initialization target">
|
|
|
|
<echo message="=========== Build JasperReportsClient"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="plugin" depends="init">
|
|
|
|
<buildPlugin workspaceDirectory="${workspace}"
|
|
|
|
projectName="JasperReportsClient"
|
|
|
|
targetPlatformId="target.platform"
|
|
|
|
destination="../lib"
|
|
|
|
buildSourceJar="false" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="clean">
|
|
|
|
<delete>
|
|
|
|
<fileset dir="../lib/plugins">
|
|
|
|
<include name="org.adempiere.apps.JasperReportsClient_*.jar"/>
|
|
|
|
</fileset>
|
|
|
|
</delete>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
</project>
|