2007-01-21 00:49:16 +07:00
|
|
|
<!-- ============================================= -->
|
|
|
|
<!-- jasperreport -->
|
|
|
|
<!-- ============================================= -->
|
|
|
|
|
|
|
|
|
|
|
|
<project name="JasperReports" default="dist" basedir=".">
|
|
|
|
|
|
|
|
<description>
|
|
|
|
Build the UI subproject within the Compiere project.
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<!-- set global properties for this build -->
|
|
|
|
<property name="src" value="src"/>
|
|
|
|
<property name="build.dir" value="build"/>
|
|
|
|
<property name="needed.dir" value="needed"/>
|
|
|
|
<property name="dist.dir" value="."/>
|
|
|
|
<property name="jar.path" value="../lib"/>
|
|
|
|
<property name="jar.name" value="CompiereJasper"/>
|
|
|
|
<property name="needed.jar.name" value="CompiereJasperReqs"/>
|
|
|
|
<property name="version" value="_1"/>
|
2007-03-01 00:57:05 +07:00
|
|
|
<!--<property environment="env"/>-->
|
|
|
|
<import file="../utils_dev/properties.xml"/>
|
2007-01-21 00:49:16 +07:00
|
|
|
|
|
|
|
<!-- set path to include the necessary jar files for javac -->
|
|
|
|
<path id="project.class.path">
|
|
|
|
<pathelement path="${classpath}"/>
|
|
|
|
</path>
|
|
|
|
|
|
|
|
|
|
|
|
<target name="init" description="initialization target">
|
|
|
|
<echo message="=========== Build JasperReport"/>
|
|
|
|
|
|
|
|
<!-- create the time stamp -->
|
|
|
|
<tstamp/>
|
|
|
|
<!-- create the build directory structure used by compile -->
|
|
|
|
<mkdir dir="${build.dir}"/>
|
|
|
|
|
|
|
|
<!-- check for the distribution directory -->
|
|
|
|
<available file="${dist.dir}" type="dir" property="dist.dir.exists"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="makedir" depends="init" unless="dist.dir.exists">
|
|
|
|
<!-- create the distribution directory if not available -->
|
|
|
|
<mkdir dir="${dist}/${dist.dir}"/>
|
|
|
|
<mkdir dir="${dist}/${needed.dir}"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
|
|
|
|
<target name="compile" depends="makedir">
|
|
|
|
<!-- compile the java code from ${src} into ${build.dir} -->
|
|
|
|
<javac srcdir="${src}" destdir="${build.dir}" deprecation="on" source="1.4" target="1.4" debug="on">
|
|
|
|
<classpath>
|
|
|
|
<pathelement path="${classpath}"/>
|
2007-03-02 21:47:26 +07:00
|
|
|
<pathelement path="../client/build"/>
|
2007-01-21 00:49:16 +07:00
|
|
|
<pathelement path="../base/Base.jar"/>
|
2007-03-02 21:47:26 +07:00
|
|
|
<pathelement path="../dbPort/dbPort.jar"/>
|
2007-01-21 00:49:16 +07:00
|
|
|
<pathelement path="../extend/Extend.jar"/>
|
|
|
|
<pathelement path="../lib/CSTools.jar"/>
|
|
|
|
<pathelement path="../looks/CLooks.jar"/>
|
|
|
|
<pathelement path="../lib/oracle.jar"/>
|
2007-03-02 21:47:26 +07:00
|
|
|
<pathelement path="../JasperReportsTools/lib/jasperreports-1.3.0.jar"/>
|
|
|
|
<pathelement path="../JasperReportsTools/lib/commons-digester-1.7.jar"/>
|
2007-01-21 00:49:16 +07:00
|
|
|
<pathelement path="../JasperReportsTools/lib/commons-collections-3.1.jar"/>
|
|
|
|
<pathelement path="../JasperReportsTools/lib/commons-logging-1.4.jar"/>
|
|
|
|
<pathelement path="../JasperReportsTools/lib/commons-beanutils-1.7.jar"/>
|
|
|
|
<pathelement path="../JasperReportsTools/lib/barbecue-1.1.jar"/>
|
|
|
|
<pathelement path="../JasperReportsTools/lib/xercesImpl.jar"/>
|
|
|
|
<pathelement path="../JasperReportsTools/lib/xml-apis.jar"/>
|
|
|
|
<pathelement path="../lib/sybase.jar"/>
|
|
|
|
<pathelement path="../tools/lib/jconn3.jar"/>
|
|
|
|
<pathelement path="../tools/lib/postgresql.jar"/>
|
2007-03-02 21:47:26 +07:00
|
|
|
<pathelement path="../JasperReportsTools/lib/itext-1.3.1.jar"/>
|
2007-01-21 00:49:16 +07:00
|
|
|
<pathelement location="../tools/lib/j2ee.jar" />
|
|
|
|
</classpath>
|
|
|
|
</javac>
|
|
|
|
<!-- copy all image & sound files from src to the build directory -->
|
|
|
|
<copy todir="${build.dir}">
|
|
|
|
<fileset dir="${src}">
|
|
|
|
<include name="**/images/*"/>
|
|
|
|
<include name="**/*.gif"/>
|
|
|
|
<include name="**/*.jpg"/>
|
|
|
|
<include name="**/*.wav"/>
|
|
|
|
<include name="**/*.htm"/>
|
|
|
|
<include name="**/*.html"/>
|
|
|
|
<include name="**/*.properties"/>
|
|
|
|
<exclude name="**/package.html"/>
|
|
|
|
</fileset>
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- =========================================== -->
|
|
|
|
<!-- Distribution -->
|
|
|
|
<!-- =========================================== -->
|
|
|
|
<target name="dist" depends="compile" description="Create JasperReport.jar and JasperNeeded.jar">
|
|
|
|
<!-- put everything from ${build.dir} into the ${jar.name}.jar file -->
|
|
|
|
<jar jarfile="${dist.dir}/${jar.name}.jar"
|
|
|
|
excludes="**/*.jbx"
|
|
|
|
index="yes">
|
|
|
|
<fileset dir="${build.dir}"/>
|
|
|
|
<manifest>
|
|
|
|
<attribute name="Specification-Title" value="Add-on for Jasper Reports integration on org.compiere.report.ReportStarter"/>
|
2007-03-01 00:57:05 +07:00
|
|
|
<attribute name="Specification-Version" value="${env.ADEMPIERE_VERSION}${version}"/>
|
|
|
|
<attribute name="Specification-Vendor" value="Adempiere.org"/>
|
|
|
|
<attribute name="Implementation-Title" value="CompiereJasper ${env.ADEMPIERE_VERSION}${version}"/>
|
|
|
|
<attribute name="Implementation-Version" value="${env.ADEMPIERE_VERSION}${version} ${DSTAMP}-${TSTAMP}"/>
|
|
|
|
<attribute name="Implementation-Vendor" value="${env.ADEMPIERE_VENDOR}"/>
|
|
|
|
<attribute name="Implementation-URL" value="http://www.adempiere.org"/>
|
2007-01-21 00:49:16 +07:00
|
|
|
<attribute name="Main-Class" value="org.compiere.report.ReportStarter"/>
|
|
|
|
</manifest>
|
|
|
|
</jar>
|
|
|
|
|
2007-03-02 21:47:26 +07:00
|
|
|
<unjar src="../JasperReportsTools/lib/jasperreports-1.3.0.jar" dest="${needed.dir}" />
|
|
|
|
<unjar src="../JasperReportsTools/lib/commons-digester-1.7.jar" dest="${needed.dir}" />
|
2007-01-21 00:49:16 +07:00
|
|
|
<unjar src="../JasperReportsTools/lib/commons-collections-3.1.jar" dest="${needed.dir}" />
|
|
|
|
<unjar src="../JasperReportsTools/lib/commons-logging-1.4.jar" dest="${needed.dir}" />
|
|
|
|
<unjar src="../JasperReportsTools/lib/commons-beanutils-1.7.jar" dest="${needed.dir}" />
|
|
|
|
<unjar src="../JasperReportsTools/lib/barbecue-1.1.jar" dest="${needed.dir}" />
|
|
|
|
<unjar src="../JasperReportsTools/lib/xercesImpl.jar" dest="${needed.dir}" />
|
|
|
|
<unjar src="../JasperReportsTools/lib/xml-apis.jar" dest="${needed.dir}" />
|
2007-03-02 21:47:26 +07:00
|
|
|
<unjar src="../JasperReportsTools/lib/itext-1.3.1.jar" dest="${needed.dir}" />
|
2007-01-21 00:49:16 +07:00
|
|
|
<unjar src="../JasperReportsTools/lib/poi-2.0-final-20040126.jar" dest="${needed.dir}" />
|
|
|
|
<unjar src="../JasperReportsTools/lib/iReport.jar" dest="${needed.dir}">
|
|
|
|
<!-- producing an iReport runTime -->
|
|
|
|
<patternset>
|
|
|
|
<include name="it/businesslogic/ireport/barcode/*.class"/>
|
|
|
|
<include name="it/businesslogic/ireport/chart/*.class"/>
|
|
|
|
<include name="it/businesslogic/ireport/util/*.class"/>
|
|
|
|
<include name="it/businesslogic/ireport/*Element.class"/>
|
|
|
|
<include name="it/businesslogic/dtds/*"/>
|
|
|
|
</patternset>
|
|
|
|
</unjar>
|
|
|
|
<!-- futur dev jfree chart but it needs scriptlets
|
|
|
|
<unjar src="../tools/lib/jfreechart-0.9.21.jar" dest="${needed.dir}" />
|
|
|
|
-->
|
|
|
|
<jar jarfile="${dist.dir}/${needed.jar.name}.jar"
|
|
|
|
excludes="**/*.jbx"
|
|
|
|
index="yes">
|
|
|
|
<fileset dir="${needed.dir}"/>
|
|
|
|
<manifest>
|
|
|
|
<attribute name="Specification-Title" value="Needed libraries for Jasper Reports integration on org.compiere.report.ReportStarter"/>
|
2007-03-01 00:57:05 +07:00
|
|
|
<attribute name="Specification-Version" value="${env.ADEMPIERE_VERSION}${version}"/>
|
|
|
|
<attribute name="Specification-Vendor" value="Adempiere.org"/>
|
|
|
|
<attribute name="Implementation-Title" value="CTools ${env.ADEMPIERE_VERSION}${version}"/>
|
|
|
|
<attribute name="Implementation-Version" value="${env.ADEMPIERE_VERSION}${version} ${DSTAMP}-${TSTAMP}"/>
|
|
|
|
<attribute name="Implementation-Vendor" value="${env.ADEMPIERE_VENDOR}"/>
|
|
|
|
<attribute name="Implementation-URL" value="http://www.adempiere.org"/>
|
2007-01-21 00:49:16 +07:00
|
|
|
</manifest>
|
|
|
|
</jar>
|
|
|
|
<copy file="${dist.dir}/${needed.jar.name}.jar" todir="../lib">
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- =========================================== -->
|
|
|
|
<!-- Clean up -->
|
|
|
|
<!-- =========================================== -->
|
|
|
|
<target name="clean">
|
|
|
|
<!-- Delete the ${build.dir} directory trees -->
|
2007-02-16 05:06:48 +07:00
|
|
|
<delete dir="${build.dir}"/>
|
2007-01-21 00:49:16 +07:00
|
|
|
<!-- Delete the Doc/Source files -->
|
|
|
|
<delete file="${dist.dir}/${jar.name}.jar" failonerror="false"/>
|
|
|
|
<delete file="${dist.dir}/${jar.name}Doc.jar" failonerror="false"/>
|
|
|
|
<delete file="${dist.dir}/${jar.name}Source.jar" failonerror="false"/>
|
2007-02-16 05:37:20 +07:00
|
|
|
<delete dir="${needed.dir}"/>
|
|
|
|
<delete file="./CompiereJasperReqs.jar"/>
|
|
|
|
<delete file="${jar.path}/CompiereJasperReqs.jar"/>
|
2007-01-21 00:49:16 +07:00
|
|
|
</target>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- =========================================== -->
|
|
|
|
<!-- Documentation -->
|
|
|
|
<!-- =========================================== -->
|
|
|
|
<target name="doc">
|
|
|
|
<javadoc packageList="packages.txt"
|
|
|
|
sourcepath="src"
|
|
|
|
excludepackagenames=""
|
|
|
|
defaultexcludes="yes"
|
|
|
|
destdir="doc"
|
|
|
|
author="true" version="true" use="true"
|
|
|
|
windowtitle="Compiere JasperReport Integration Documentation"
|
|
|
|
overview="overview.html">
|
|
|
|
<doctitle><![CDATA[Compiere<sup>TM</sup> Looks API Documentation]]></doctitle>
|
|
|
|
<header><![CDATA[<b>Compiere JasperReports Integration 1.0</b>]]></header>
|
|
|
|
<bottom><![CDATA[<i>Copyright (c) 1999-2005 ComPiere, Inc. - Author: Ronan LE MEILLAT based on rus.jar</i>]]></bottom>
|
|
|
|
<link href="http://java.sun.com/j2se/1.4.1/docs/api"/>
|
|
|
|
</javadoc>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- =========================================== -->
|
|
|
|
<!-- Release -->
|
|
|
|
<!-- =========================================== -->
|
|
|
|
<target name="release">
|
|
|
|
<!-- Create Release Jar Files -->
|
|
|
|
<jar
|
|
|
|
jarfile="${dist.dir}/${jar.name}Doc${version}.jar"
|
|
|
|
basedir="doc"/>
|
|
|
|
<jar
|
|
|
|
jarfile="${dist.dir}/${jar.name}Source${version}.jar"
|
|
|
|
basedir="src"/>
|
|
|
|
<copy
|
|
|
|
file="${dist.dir}/${jar.name}.jar"
|
|
|
|
tofile="${dist.dir}/${jar.name}${version}.jar" />
|
|
|
|
|
|
|
|
<!-- Sign Jar -->
|
|
|
|
<signjar
|
|
|
|
jar="${dist.dir}/${jar.name}${version}.jar"
|
|
|
|
alias="compiere"
|
|
|
|
storepass="${password}"
|
|
|
|
keystore="../keystore/myKeystore"/>
|
|
|
|
<signjar
|
|
|
|
jar="${dist.dir}/${needed.jar.name}${version}.jar"
|
|
|
|
alias="compiere"
|
|
|
|
storepass="${password}"
|
|
|
|
keystore="../keystore/myKeystore"/>
|
|
|
|
</target>
|
|
|
|
|
2007-01-30 16:06:53 +07:00
|
|
|
</project>
|