2007-01-21 00:49:16 +07:00
|
|
|
<!-- ============================================= -->
|
|
|
|
<!-- jasperreport -->
|
|
|
|
<!-- ============================================= -->
|
|
|
|
|
|
|
|
|
2010-07-13 15:08:03 +07:00
|
|
|
<project name="JasperReports" default="plugin" basedir=".">
|
2007-01-21 00:49:16 +07:00
|
|
|
|
|
|
|
<description>
|
2010-07-13 15:08:03 +07:00
|
|
|
build jasper reports bundle for adempiere
|
2007-01-21 00:49:16 +07:00
|
|
|
</description>
|
|
|
|
|
|
|
|
<!-- set global properties for this build -->
|
2007-03-01 00:57:05 +07:00
|
|
|
<import file="../utils_dev/properties.xml"/>
|
2007-01-21 00:49:16 +07:00
|
|
|
|
2010-07-13 15:08:03 +07:00
|
|
|
<target name="clean" description="delete class directory">
|
|
|
|
<delete>
|
|
|
|
<fileset dir="../lib">
|
2010-08-20 15:05:06 +07:00
|
|
|
<include name="org.adempiere.JasperReports_*.jar"/>
|
2010-07-13 15:08:03 +07:00
|
|
|
</fileset>
|
|
|
|
</delete>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="plugin">
|
|
|
|
<buildPlugin workspaceDirectory="${workspace}"
|
|
|
|
projectName="JasperReports"
|
|
|
|
targetPlatformId="target.platform"
|
|
|
|
destination="../lib"
|
|
|
|
buildSourceJar="false"
|
|
|
|
clean="no"/>
|
|
|
|
</target>
|
2007-01-30 16:06:53 +07:00
|
|
|
</project>
|