2006-12-29 20:20:57 +07:00
|
|
|
<?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 $-->
|
|
|
|
|
2010-07-09 17:05:59 +07:00
|
|
|
<project name="adempiereWebStore" default="plugin-dist" basedir=".">
|
2006-11-17 10:15:48 +07:00
|
|
|
|
2007-01-30 16:06:53 +07:00
|
|
|
<!--<property environment="env"/>-->
|
2007-01-30 17:13:17 +07:00
|
|
|
<import file="../utils_dev/properties.xml"/>
|
2007-01-30 16:06:53 +07:00
|
|
|
|
2006-11-17 10:15:48 +07:00
|
|
|
<target name="init">
|
|
|
|
<echo message="=========== Build Web Store"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- =================================================================== -->
|
2010-07-09 17:05:59 +07:00
|
|
|
<!-- Creates the plugin -->
|
2006-11-17 10:15:48 +07:00
|
|
|
<!-- =================================================================== -->
|
2010-07-09 17:05:59 +07:00
|
|
|
<target name="plugin-dist">
|
|
|
|
<buildPlugin workspaceDirectory=".."
|
|
|
|
projectName="wstore"
|
|
|
|
targetPlatformId="target.platform"
|
|
|
|
destination="${env.ADEMPIERE_ROOT}/Adempiere/osgi"
|
|
|
|
buildSourceJar="false"
|
|
|
|
clean="no"/>
|
2006-11-17 10:15:48 +07:00
|
|
|
</target>
|
|
|
|
|
|
|
|
<!-- =================================================================== -->
|
|
|
|
<!-- Cleans up the current build -->
|
|
|
|
<!-- =================================================================== -->
|
|
|
|
<target name="clean">
|
2010-07-09 17:05:59 +07:00
|
|
|
<delete>
|
|
|
|
<fileset includes="${env.ADEMPIERE_ROOT}/Adempiere/osgi/*wstore*.jar"></fileset>
|
|
|
|
</delete>
|
2006-11-17 10:15:48 +07:00
|
|
|
</target>
|
2010-07-09 17:05:59 +07:00
|
|
|
|
2006-11-17 10:15:48 +07:00
|
|
|
</project>
|