core-jgi/webStore/build.xml

40 lines
1.5 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2006-11-17 10:15:48 +07:00
<!-- ======================================================== -->
<!-- Adempiere Web Store Application -->
<!-- ======================================================== -->
<!-- $Header: /cvs/adempiere/webStore/build.xml,v 1.2 2006/06/10 21:59:22 jjanke Exp $-->
<project name="adempiereWebStore" default="plugin" basedir=".">
2006-11-17 10:15:48 +07:00
<!--<property environment="env"/>-->
<import file="../utils_dev/properties.xml"/>
2006-11-17 10:15:48 +07:00
<target name="init">
<echo message="=========== Build Web Store"/>
</target>
<!-- =================================================================== -->
<!-- Creates the plugin -->
2006-11-17 10:15:48 +07:00
<!-- =================================================================== -->
<target name="plugin">
<buildPlugin workspaceDirectory="${workspace}"
projectName="webStore"
targetPlatformId="target.platform"
destination="../lib"
buildSourceJar="false"
clean="no"/>
2006-11-17 10:15:48 +07:00
</target>
<!-- =================================================================== -->
<!-- Cleans up the current build -->
<!-- =================================================================== -->
<target name="clean">
<delete>
<fileset dir="../lib/plugins">
<include name="org.adempiere.wstore*.jar"/>
</fileset>
</delete>
2006-11-17 10:15:48 +07:00
</target>
2006-11-17 10:15:48 +07:00
</project>