32 lines
868 B
XML
32 lines
868 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- ============================================= -->
|
|
<!-- PIPO -->
|
|
<!-- ============================================= -->
|
|
|
|
<project name="pipo" default="plugin" basedir=".">
|
|
|
|
<import file="../utils_dev/properties.xml"/>
|
|
|
|
<target name="init" description="initialization target">
|
|
<echo message="=========== Build PIPO"/>
|
|
</target>
|
|
|
|
<target name="plugin" depends="init">
|
|
<buildPlugin workspaceDirectory="${workspace}"
|
|
projectName="pipo"
|
|
targetPlatformId="target.platform"
|
|
destination="../lib"
|
|
buildSourceJar="false" />
|
|
</target>
|
|
|
|
<target name="clean">
|
|
<delete>
|
|
<fileset dir="../lib/plugins">
|
|
<include name="org.adempiere.pipo_*.jar"/>
|
|
</fileset>
|
|
</delete>
|
|
</target>
|
|
|
|
</project>
|