41 lines
1.3 KiB
XML
41 lines
1.3 KiB
XML
<!-- ============================================= -->
|
|
<!-- Tools -->
|
|
<!-- ============================================= -->
|
|
<!-- $Header: /cvs/adempiere/tools/build.xml,v 1.4 2006/07/03 23:23:31 jjanke Exp $ -->
|
|
|
|
<project name="tools" default="plugin" basedir=".">
|
|
|
|
<description>
|
|
tools plugin
|
|
</description>
|
|
|
|
<!-- set global properties for this build -->
|
|
<import file="../utils_dev/properties.xml" />
|
|
|
|
<property name="bundle.name" value="org.adempiere.tools"/>
|
|
<property name="bundle.version" value="0.0.0.2"/>
|
|
|
|
<!-- ============================================= -->
|
|
<!-- Init -->
|
|
<!-- ============================================= -->
|
|
<target name="init" description="initialization target">
|
|
<echo message="=========== Build Tools ${env.ADEMPIERE_VERSION}" />
|
|
</target>
|
|
|
|
<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>
|
|
</project>
|