2008-05-29 17:23:06 +07:00
|
|
|
<!-- ============================================= -->
|
|
|
|
<!-- Tools -->
|
|
|
|
<!-- ============================================= -->
|
|
|
|
<!-- $Header: /cvs/adempiere/tools/build.xml,v 1.4 2006/07/03 23:23:31 jjanke Exp $ -->
|
|
|
|
|
2010-07-13 15:12:33 +07:00
|
|
|
<project name="tools" default="plugin" basedir=".">
|
2008-05-29 17:23:06 +07:00
|
|
|
|
2008-11-11 06:54:09 +07:00
|
|
|
<description>
|
2010-07-13 15:12:33 +07:00
|
|
|
tools plugin
|
|
|
|
</description>
|
2008-05-29 17:23:06 +07:00
|
|
|
|
2008-11-11 06:54:09 +07:00
|
|
|
<!-- set global properties for this build -->
|
|
|
|
<import file="../utils_dev/properties.xml" />
|
2008-05-29 17:23:06 +07:00
|
|
|
|
2010-04-29 04:07:32 +07:00
|
|
|
<property name="bundle.name" value="org.adempiere.tools"/>
|
|
|
|
<property name="bundle.version" value="0.0.0.2"/>
|
|
|
|
|
2008-11-11 06:54:09 +07:00
|
|
|
<!-- ============================================= -->
|
|
|
|
<!-- Init -->
|
|
|
|
<!-- ============================================= -->
|
2010-07-13 15:12:33 +07:00
|
|
|
<target name="init" description="initialization target">
|
2008-11-11 06:54:09 +07:00
|
|
|
<echo message="=========== Build Tools ${env.ADEMPIERE_VERSION}" />
|
|
|
|
</target>
|
2008-05-29 17:23:06 +07:00
|
|
|
|
2010-07-13 15:12:33 +07:00
|
|
|
<target name="plugin" depends="init">
|
|
|
|
<buildPlugin workspaceDirectory="${workspace}"
|
|
|
|
projectName="tools"
|
|
|
|
targetPlatformId="target.platform"
|
|
|
|
destination="../lib"
|
|
|
|
buildSourceJar="false" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="clean">
|
|
|
|
<delete>
|
|
|
|
<fileset dir="../lib">
|
|
|
|
<include name="org.adempiere.tools*.jar"/>
|
|
|
|
</fileset>
|
|
|
|
</delete>
|
|
|
|
</target>
|
2008-05-29 17:23:06 +07:00
|
|
|
</project>
|