core-jgi/base/build.xml

42 lines
1.3 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2006-11-17 10:05:26 +07:00
<!-- ============================================= -->
<!-- Base -->
<!-- ============================================= -->
<!-- $Header: /cvs/adempiere/base/build.xml,v 1.1 2006/04/21 17:41:36 jjanke Exp $ -->
<project name="base" default="plugin" basedir=".">
2006-11-17 10:05:26 +07:00
<description>
This buildfile is used to build the base subproject within
2006-11-17 10:05:26 +07:00
the Adempiere project.
</description>
<!-- set global properties for this build -->
<import file="../utils_dev/properties.xml"/>
2006-11-17 10:05:26 +07:00
<target name="init" description="initialization target">
<echo message="=========== Build Base"/>
</target>
<!-- =========================================== -->
<!-- Distribution -->
<!-- =========================================== -->
<target name="plugin" depends="init">
<buildPlugin workspaceDirectory="${workspace}"
projectName="base"
targetPlatformId="target.platform"
destination="../lib"
buildSourceJar="false"
clean="no"/>
2006-11-17 10:05:26 +07:00
</target>
2006-11-17 10:05:26 +07:00
<target name="clean">
<delete>
<fileset dir="../lib/plugins">
<include name="*base*.jar"/>
</fileset>
</delete>
2006-11-17 10:05:26 +07:00
</target>
</project>