2006-11-17 10:13:24 +07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!-- ============================================= -->
|
|
|
|
<!-- Adempiere Server Application -->
|
|
|
|
<!-- ============================================= -->
|
|
|
|
<!-- $Header: /cvs/adempiere/serverApps/build.xml,v 1.14 2006/08/07 18:23:48 possibilityforge Exp $-->
|
|
|
|
|
2010-07-13 15:11:18 +07:00
|
|
|
<project name="adempiereApps" default="plugin" basedir=".">
|
2006-11-17 10:13:24 +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-30 16:06:53 +07:00
|
|
|
|
2010-07-13 15:11:18 +07:00
|
|
|
<target name="init">
|
2007-01-30 16:06:53 +07:00
|
|
|
<echo message="=========== Build Server Application"/>
|
|
|
|
</target>
|
|
|
|
|
2010-07-13 15:11:18 +07:00
|
|
|
<target name="plugin" depends="init">
|
|
|
|
<buildPlugin workspaceDirectory="${workspace}"
|
|
|
|
projectName="serverApps"
|
|
|
|
targetPlatformId="target.platform"
|
|
|
|
destination="../lib"
|
|
|
|
buildSourceJar="false" />
|
2007-01-30 16:06:53 +07:00
|
|
|
</target>
|
|
|
|
|
2006-11-17 10:13:24 +07:00
|
|
|
<target name="clean">
|
2010-07-13 15:11:18 +07:00
|
|
|
<delete>
|
|
|
|
<fileset dir="../lib">
|
|
|
|
<include name="org.adempiere.serverApp*.jar"/>
|
|
|
|
</fileset>
|
|
|
|
</delete>
|
2006-11-17 10:13:24 +07:00
|
|
|
</target>
|
|
|
|
|
|
|
|
</project>
|