core-jgi/client/build.xml

38 lines
1.1 KiB
XML
Raw Normal View History

2006-11-17 10:05:56 +07:00
<?xml version="1.0" encoding="UTF-8"?>
<!-- ============================================= -->
<!-- Client -->
<!-- ============================================= -->
<!-- $Header: /cvs/adempiere/client/build.xml,v 1.2 2006/06/10 21:57:27 jjanke Exp $ -->
<project name="client" default="plugin" basedir=".">
2006-11-17 10:05:56 +07:00
<description>
This buildfile is used to build the client subproject within
2006-11-17 10:05:56 +07:00
the Adempiere project.
</description>
<import file="../utils_dev/properties.xml"/>
2006-11-17 10:05:56 +07:00
<target name="init" description="initialization target">
2006-11-17 10:05:56 +07:00
<echo message="=========== Build Client"/>
</target>
<target name="plugin" depends="init">
<buildPlugin workspaceDirectory="${workspace}"
projectName="client"
targetPlatformId="target.platform"
destination="../lib"
buildSourceJar="false" />
</target>
2006-11-17 10:05:56 +07:00
<target name="clean">
<delete>
<fileset dir="../lib/plugins">
<include name="org.adempiere.client*.jar"/>
</fileset>
</delete>
2006-11-17 10:05:56 +07:00
</target>
</project>