33 lines
984 B
XML
33 lines
984 B
XML
<?xml version="1.0"?>
|
|
<!-- ============================================= -->
|
|
<!-- Adempiere Server Application -->
|
|
<!-- ============================================= -->
|
|
<!-- $Header: /cvs/adempiere/serverApps/build.xml,v 1.14 2006/08/07 18:23:48 possibilityforge Exp $-->
|
|
|
|
<project name="adempiereApps" default="plugin" basedir=".">
|
|
|
|
<!--<property environment="env"/>-->
|
|
<import file="../utils_dev/properties.xml"/>
|
|
|
|
<target name="init">
|
|
<echo message="=========== Build Server Application"/>
|
|
</target>
|
|
|
|
<target name="plugin" depends="init">
|
|
<buildPlugin workspaceDirectory="${workspace}"
|
|
projectName="serverApps"
|
|
targetPlatformId="target.platform"
|
|
destination="../lib"
|
|
buildSourceJar="false" />
|
|
</target>
|
|
|
|
<target name="clean">
|
|
<delete>
|
|
<fileset dir="../lib">
|
|
<include name="org.adempiere.serverApp*.jar"/>
|
|
</fileset>
|
|
</delete>
|
|
</target>
|
|
|
|
</project>
|