core-jgi/JasperReports/build.xml

32 lines
913 B
XML
Raw Normal View History

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