37 lines
1005 B
XML
37 lines
1005 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- ============================================= -->
|
|
<!-- UIBase -->
|
|
<!-- ============================================= -->
|
|
|
|
<project name="uibase" default="plugin" basedir=".">
|
|
|
|
<description>
|
|
This buildfile is used to build the client subproject within
|
|
the Adempiere project.
|
|
</description>
|
|
|
|
<import file="../utils_dev/properties.xml"/>
|
|
|
|
<target name="init" description="initialization target">
|
|
<echo message="=========== Build UI Base"/>
|
|
</target>
|
|
|
|
<target name="plugin" depends="init">
|
|
<buildPlugin workspaceDirectory="${workspace}"
|
|
projectName="uibase"
|
|
targetPlatformId="target.platform"
|
|
destination="../lib"
|
|
buildSourceJar="false" />
|
|
</target>
|
|
|
|
<target name="clean">
|
|
<delete>
|
|
<fileset dir="../lib/plugins">
|
|
<include name="org.adempiere.ui.base_*.jar"/>
|
|
</fileset>
|
|
</delete>
|
|
</target>
|
|
|
|
</project>
|