2006-11-17 10:08:46 +07:00
|
|
|
<!-- ============================================= -->
|
|
|
|
<!-- Extend -->
|
|
|
|
<!-- ============================================= -->
|
|
|
|
<!-- $Header: /cvs/adempiere/extend/build.xml,v 1.1 2006/04/21 17:55:19 jjanke Exp $ -->
|
|
|
|
|
|
|
|
<project name="extend" default="dist" basedir=".">
|
|
|
|
|
|
|
|
<description>
|
|
|
|
This buildfile is used to build the extend subproject within
|
|
|
|
the Adempiere project.
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<!-- set global properties for this build -->
|
|
|
|
<property name="src" value="src"/>
|
|
|
|
<property name="build.dir" value="build"/>
|
|
|
|
<property name="dist.dir" value="."/>
|
|
|
|
<property name="jar.path" value="../lib"/>
|
|
|
|
<property name="jar.name" value="Extend"/>
|
|
|
|
|
|
|
|
<!-- set path to include the necessary jar files for javac -->
|
|
|
|
<path id="project.class.path">
|
|
|
|
<pathelement path="${classpath}"/>
|
|
|
|
<pathelement path="${jar.path}/CCTools.jar"/>
|
2007-05-23 21:54:11 +07:00
|
|
|
<pathelement path="${jar.path}/jboss.jar"/>
|
2007-05-17 13:34:08 +07:00
|
|
|
<pathelement path="../base/build"/>
|
2006-11-17 10:08:46 +07:00
|
|
|
<pathelement path="../looks/CLooks.jar"/>
|
2007-05-17 13:34:08 +07:00
|
|
|
<pathelement path="../tools/lib/junit.jar"/>
|
2007-05-23 21:54:11 +07:00
|
|
|
<pathelement path="../adempiere/Adempiere/lib/Adempiere.jar" />
|
2006-11-17 10:08:46 +07:00
|
|
|
</path>
|
|
|
|
|
|
|
|
<target name="init" description="initialization target">
|
|
|
|
<echo message="=========== Build Extend"/>
|
|
|
|
<!-- 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}"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="compile" depends="makedir">
|
|
|
|
<!-- compile the java code from ${src} into ${build.dir} -->
|
|
|
|
<javac srcdir="${src}" destdir="${build.dir}" deprecation="on" debug="on">
|
|
|
|
<classpath refid="project.class.path"/>
|
|
|
|
</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">
|
|
|
|
<!-- put everything from ${build.dir} into the ${jar.name}.jar file -->
|
|
|
|
<jar jarfile="${dist.dir}/${jar.name}.jar" basedir="${build.dir}"/>
|
|
|
|
</target>
|
2007-05-23 21:54:11 +07:00
|
|
|
|
2007-05-23 06:31:22 +07:00
|
|
|
<path id="class.path.test">
|
2007-05-24 07:13:40 +07:00
|
|
|
<pathelement path="${build.dir}"/>
|
2007-05-23 06:31:22 +07:00
|
|
|
<pathelement path="${classpath}"/>
|
|
|
|
<pathelement path="${jar.path}/CCTools.jar"/>
|
|
|
|
<pathelement path="../base/build"/>
|
|
|
|
<pathelement path="../looks/CLooks.jar"/>
|
|
|
|
<pathelement path="../tools/lib/junit.jar"/>
|
2007-05-23 21:54:11 +07:00
|
|
|
<pathelement path="../adempiere/Adempiere/lib/Adempiere.jar" />
|
|
|
|
<pathelement path="../adempiere/Adempiere/lib/jboss.jar" />
|
|
|
|
<pathelement path="../adempiere/Adempiere/lib/oracle.jar" />
|
|
|
|
<pathelement path="../adempiere/Adempiere/lib/postgresql.jar" />
|
|
|
|
<pathelement path="./Extend.jar" />
|
2007-05-24 07:13:40 +07:00
|
|
|
<!-- pathelement path="/root/RmiJdbc/dist/lib/RmiJdbc.jar" / -->
|
2007-05-23 06:31:22 +07:00
|
|
|
</path>
|
2007-05-23 21:54:11 +07:00
|
|
|
|
|
|
|
<target name="functionaltest" depends="dist">
|
|
|
|
<junit>
|
|
|
|
<classpath refid="class.path.test" />
|
|
|
|
<formatter type="brief" usefile="false" />
|
|
|
|
<test name="test.functional.MUserTest" />
|
|
|
|
<test name="test.functional.MLocationTest" />
|
|
|
|
<test name="test.functional.MBPartnerTest" />
|
|
|
|
<test name="test.functional.MBPGroupTest" />
|
|
|
|
<test name="test.functional.MBPartnerLocationTest" />
|
2007-10-09 22:48:30 +07:00
|
|
|
<test name="test.functional.MSessionTest" />
|
2007-05-24 07:13:40 +07:00
|
|
|
<test name="test.functional.PackOutTest" />
|
2007-06-16 03:59:49 +07:00
|
|
|
<test name="test.functional.MWFNodePlaceHolderTest" />
|
|
|
|
<test name="test.functional.XMLValidateTest" />
|
|
|
|
<!-- test name="test.functional.XMLImportStructureTest" / -->
|
2007-05-24 07:13:40 +07:00
|
|
|
<!-- test name="test.functional.BPMigrationTest" / -->
|
2007-05-23 21:54:11 +07:00
|
|
|
</junit>
|
|
|
|
</target>
|
2007-06-16 03:59:49 +07:00
|
|
|
|
|
|
|
<target name="run" depends="dist">
|
|
|
|
<java fork="true" classname="test.functional.XMLImportStructureTest">
|
|
|
|
<classpath refid="class.path.test" />
|
|
|
|
</java>
|
|
|
|
</target>
|
|
|
|
|
2007-05-23 21:54:11 +07:00
|
|
|
|
2006-11-17 10:08:46 +07:00
|
|
|
|
|
|
|
|
|
|
|
<target name="clean">
|
|
|
|
<!-- Delete the ${build.dir} directory trees -->
|
|
|
|
<delete dir="${build.dir}"/>
|
|
|
|
<delete file="${dist.dir}/${jar.name}.jar" failonerror="false"/>
|
|
|
|
</target>
|
|
|
|
|
2007-05-23 21:54:11 +07:00
|
|
|
</project>
|