Adding Web UI to the build.xml
This commit is contained in:
parent
01a2c458a2
commit
119e240dc5
|
@ -1,3 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- ======================================================== -->
|
||||||
|
<!-- Posterita Ajax UI (Web UI) -->
|
||||||
|
<!-- ======================================================== -->
|
||||||
|
|
||||||
<project name="PosteritaAjaxUI" default="war" basedir=".">
|
<project name="PosteritaAjaxUI" default="war" basedir=".">
|
||||||
<description>
|
<description>
|
||||||
|
@ -46,6 +50,7 @@
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="war" depends="compile">
|
<target name="war" depends="compile">
|
||||||
|
<echo message="=========== Build Posterita Ajax UI ==========="/>
|
||||||
<delete dir="${dist.dir}" />
|
<delete dir="${dist.dir}" />
|
||||||
|
|
||||||
<mkdir dir="${dist.dir}"/>
|
<mkdir dir="${dist.dir}"/>
|
||||||
|
|
|
@ -355,7 +355,7 @@
|
||||||
<!-- bundle everything in one ear file for simpler deployment -->
|
<!-- bundle everything in one ear file for simpler deployment -->
|
||||||
<ear destfile="${basedir}/lib/adempiere.ear" appxml="${basedir}/lib/adempiereAll.xml">
|
<ear destfile="${basedir}/lib/adempiere.ear" appxml="${basedir}/lib/adempiereAll.xml">
|
||||||
<fileset dir="${basedir}/lib"
|
<fileset dir="${basedir}/lib"
|
||||||
includes="Adempiere.jar,AdempiereSLib.jar,adempiereRoot.jar,adempiereApps.jar,adempiereApps.war,adempiereRoot.war,adempiereWebStore.war,adempiereWebCM.war,posterita.war" />
|
includes="Adempiere.jar,AdempiereSLib.jar,adempiereRoot.jar,adempiereApps.jar,adempiereApps.war,adempiereRoot.war,adempiereWebStore.war,adempiereWebCM.war,posterita.war,webui.war" />
|
||||||
</ear>
|
</ear>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
|
@ -169,6 +169,29 @@ Start Adempiere via RUN_Adempiere </td>
|
||||||
<p><a href="/adempiere">Adempiere Web Application Login (</a><a href="/adempiere/WStart">alternative)</a></p>
|
<p><a href="/adempiere">Adempiere Web Application Login (</a><a href="/adempiere/WStart">alternative)</a></p>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
|
||||||
|
<td bgcolor="#e9eef5" valign="top">
|
||||||
|
<h2><font color="#000000">Posterita POS</font></h2>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td bgcolor="#fbf8f1">
|
||||||
|
<p><a href="/posterita">Web Based POS</a></p>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
|
||||||
|
<td bgcolor="#e9eef5" valign="top">
|
||||||
|
<h2><font color="#000000">Posterita Ajax UI</font></h2>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td bgcolor="#fbf8f1">
|
||||||
|
<p><a href="/webui">Adempiere Web Ajax UI</a></p>
|
||||||
|
</td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -29,7 +29,8 @@
|
||||||
<ant inheritAll="false" dir="webStore"/>
|
<ant inheritAll="false" dir="webStore"/>
|
||||||
<ant inheritAll="false" dir="webCM"/>
|
<ant inheritAll="false" dir="webCM"/>
|
||||||
<ant inheritAll="false" dir="sqlj"/>
|
<ant inheritAll="false" dir="sqlj"/>
|
||||||
<ant inheritAll="false" dir="posterita"/>
|
<ant inheritAll="false" dir="posterita"/>
|
||||||
|
<ant inheritAll="false" dir="extension/posterita/webui"/>
|
||||||
<ant inheritAll="false" dir="install"/>
|
<ant inheritAll="false" dir="install"/>
|
||||||
|
|
||||||
</target>
|
</target>
|
||||||
|
@ -46,7 +47,8 @@
|
||||||
<ant inheritAll="false" dir="webStore" target="clean"/>
|
<ant inheritAll="false" dir="webStore" target="clean"/>
|
||||||
<ant inheritAll="false" dir="webCM" target="clean"/>
|
<ant inheritAll="false" dir="webCM" target="clean"/>
|
||||||
<ant inheritAll="false" dir="sqlj" target="clean"/>
|
<ant inheritAll="false" dir="sqlj" target="clean"/>
|
||||||
<ant inheritAll="false" dir="posterita" target="clean"/>
|
<ant inheritAll="false" dir="posterita" target="clean"/>
|
||||||
|
<ant inheritAll="false" dir="extension/posterita/webui" target="clean"/>
|
||||||
<ant inheritAll="false" dir="install" target="clean"/>
|
<ant inheritAll="false" dir="install" target="clean"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue