zkwebui now deployable again in standard deployment
https://sourceforge.net/tracker/?func=detail&aid=2700937&group_id=176962&atid=879334
This commit is contained in:
parent
e8c554fb89
commit
c499e73fb1
|
@ -1,4 +1,4 @@
|
||||||
source.JasperReports.jar = src/
|
source.JasperReports.jar = src/, build/
|
||||||
bin.includes = META-INF/,\
|
bin.includes = META-INF/,\
|
||||||
lib/postgresql.jar,\
|
lib/postgresql.jar,\
|
||||||
lib/ocrs12.jar,\
|
lib/ocrs12.jar,\
|
||||||
|
|
|
@ -69,6 +69,14 @@ the following responsibilities:
|
||||||
</fileset>
|
</fileset>
|
||||||
</copy>
|
</copy>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="war" depends="dist-web">
|
||||||
|
<war destfile="../lib/bridge.war">
|
||||||
|
<fileset dir="${dist-web}">
|
||||||
|
<include name="**/*"/>
|
||||||
|
</fileset>
|
||||||
|
</war>
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="dist-webstart">
|
<target name="dist-webstart">
|
||||||
<mkdir dir="${dist-webstart}"/>
|
<mkdir dir="${dist-webstart}"/>
|
||||||
|
|
|
@ -515,10 +515,23 @@
|
||||||
<!-- ==================================================== -->
|
<!-- ==================================================== -->
|
||||||
<!-- Setup (Main) -->
|
<!-- Setup (Main) -->
|
||||||
<!-- ==================================================== -->
|
<!-- ==================================================== -->
|
||||||
<target name="setup" depends=""
|
<target name="setup" depends="setupWar"
|
||||||
description="Setup Adempiere">
|
description="Setup Adempiere">
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<!-- ==================================================== -->
|
||||||
|
<!-- Setup (War) -->
|
||||||
|
<!-- ==================================================== -->
|
||||||
|
<target name="setupWar"
|
||||||
|
description="Setup Adempiere ZK Webui">
|
||||||
|
<unzip src="webapp/bridge.war" dest="webapp/bridge" />
|
||||||
|
<copy todir="webapp/bridge/WEB-INF/eclipse/plugins">
|
||||||
|
<fileset dir="osgi/plugins">
|
||||||
|
<include name="**/*"/>
|
||||||
|
</fileset>
|
||||||
|
</copy>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
|
||||||
<!-- ==================================================== -->
|
<!-- ==================================================== -->
|
||||||
<!-- Test - Copy -->
|
<!-- Test - Copy -->
|
||||||
|
|
|
@ -197,6 +197,14 @@
|
||||||
</fileset>
|
</fileset>
|
||||||
</copy>
|
</copy>
|
||||||
|
|
||||||
|
<!-- Bridge webapp -->
|
||||||
|
<mkdir dir="${build.dir}/Adempiere/webapp"/>
|
||||||
|
<copy overwrite="true" todir="${build.dir}/Adempiere/webapp" >
|
||||||
|
<fileset dir="../lib">
|
||||||
|
<include name="bridge.war"/>
|
||||||
|
</fileset>
|
||||||
|
</copy>
|
||||||
|
|
||||||
<!-- Utils Directory -->
|
<!-- Utils Directory -->
|
||||||
<mkdir dir="${build.dir}/Adempiere/utils"/>
|
<mkdir dir="${build.dir}/Adempiere/utils"/>
|
||||||
<copy todir="${build.dir}/Adempiere/utils">
|
<copy todir="${build.dir}/Adempiere/utils">
|
||||||
|
|
|
@ -103,6 +103,13 @@
|
||||||
destination="${env.ADEMPIERE_ROOT}/Adempiere/osgi"
|
destination="${env.ADEMPIERE_ROOT}/Adempiere/osgi"
|
||||||
buildSourceJar="false"
|
buildSourceJar="false"
|
||||||
clean="no"/>
|
clean="no"/>
|
||||||
|
<!-- TODO make this faster -->
|
||||||
|
<buildPlugin workspaceDirectory=".."
|
||||||
|
projectName="${plugin}"
|
||||||
|
targetPlatformId="target.platform"
|
||||||
|
destination="${env.ADEMPIERE_ROOT}/Adempiere/webapp/bridge/WEB-INF/eclipse"
|
||||||
|
buildSourceJar="false"
|
||||||
|
clean="no"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="plugins">
|
<target name="plugins">
|
||||||
|
|
|
@ -25,7 +25,6 @@ bin.includes = META-INF/,\
|
||||||
WEB-INF/lib/ognl.jar,\
|
WEB-INF/lib/ognl.jar,\
|
||||||
WEB-INF/lib/timelinez-sources.jar,\
|
WEB-INF/lib/timelinez-sources.jar,\
|
||||||
WEB-INF/lib/timeplotz.jar,\
|
WEB-INF/lib/timeplotz.jar,\
|
||||||
WEB-INF/lib/xercesImpl.jar,\
|
|
||||||
WEB-INF/lib/zcommon-sources.jar,\
|
WEB-INF/lib/zcommon-sources.jar,\
|
||||||
WEB-INF/lib/zcommons-el.jar,\
|
WEB-INF/lib/zcommons-el.jar,\
|
||||||
WEB-INF/lib/zhtml-sources.jar,\
|
WEB-INF/lib/zhtml-sources.jar,\
|
||||||
|
|
Loading…
Reference in New Issue