2010-07-14 10:41:52 +07:00
|
|
|
<?xml version="1.0"?>
|
2007-01-21 00:50:29 +07:00
|
|
|
<!-- ============================================= -->
|
2010-07-14 10:41:52 +07:00
|
|
|
<!-- Adempiere Server Root -->
|
2007-01-21 00:50:29 +07:00
|
|
|
<!-- ============================================= -->
|
2010-07-14 10:41:52 +07:00
|
|
|
<!-- $Header: /cvs/adempiere/serverRoot/build.xml,v 1.4 2006/06/10 21:58:02 jjanke Exp $-->
|
2007-01-21 00:50:29 +07:00
|
|
|
|
2010-07-14 10:41:52 +07:00
|
|
|
<project name="JasperReportsWebApp" default="plugin" basedir=".">
|
2007-01-21 00:50:29 +07:00
|
|
|
|
2007-01-30 16:06:53 +07:00
|
|
|
<!--<property environment="env"/>-->
|
2007-01-30 17:13:17 +07:00
|
|
|
<import file="../utils_dev/properties.xml"/>
|
2007-01-21 00:50:29 +07:00
|
|
|
|
2010-07-14 10:41:52 +07:00
|
|
|
<target name="init">
|
|
|
|
<echo message="=========== Build JasperReports WebApp Bundle"/>
|
2007-01-21 00:50:29 +07:00
|
|
|
</target>
|
|
|
|
|
2010-07-14 10:41:52 +07:00
|
|
|
<target name="clean" description="delete class directory">
|
|
|
|
<delete>
|
|
|
|
<fileset dir="../lib/plugins">
|
|
|
|
<include name="org.adempiere.JasperReports.webapp*.jar"/>
|
|
|
|
</fileset>
|
|
|
|
</delete>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="plugin">
|
|
|
|
<buildPlugin workspaceDirectory="${workspace}"
|
|
|
|
projectName="JasperReportsWebApp"
|
|
|
|
targetPlatformId="target.platform"
|
|
|
|
destination="../lib"
|
|
|
|
buildSourceJar="false"
|
|
|
|
clean="no"/>
|
|
|
|
</target>
|
2007-05-09 18:08:52 +07:00
|
|
|
</project>
|