Skip to content
Snippets Groups Projects
Commit d0f08feb authored by felmer's avatar felmer
Browse files

SP-239, SWE-6: create empty module folder in targets/www: This is needed for...

SP-239, SWE-6: create empty module folder in targets/www: This is needed for injection webapps when launching openBSI in dev mode.

SVN: 26477
parent 8f8a1354
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@
<fileset dir="${targets.www}" followsymlinks="false"/>
</delete>
<mkdir dir="${targets.www}" />
<mkdir dir="${targets.www}/${module-test.module}" />
<mkdir dir="${targets.www.web-inf}" />
<copy todir="${targets.www.web-inf}" overwrite="true" failonerror="true">
<fileset dir="../${ant.project.name}/${server-resource}" includes="*.xml" />
......
......@@ -362,7 +362,13 @@
// Override 'prepare-gwt' target by writing out 'OpenBIS.gwt-without-entry-point.xml' and updating
'ClientPluginProvider.java'.
-->
<target name="prepare-gwt"
<target name="prepare-gwt">
<antcall target="do-prepare-gwt">
<param name="module-test.module" value="ch.systemsx.cisd.openbis.OpenBIS" />
</antcall>
</target>
<target name="do-prepare-gwt"
depends="prepare-web-client, compile-tests, openbis-common-common.prepare-gwt"
description="Override 'prepare-gwt' by writing out 'OpenBIS.gwt-without-entry-point.xml' and updating 'ClientPluginProvider.java'.">
......
......@@ -190,6 +190,12 @@
depends="prepare-gwt, module-test"
description="Prepare, compile, and run the module test mode">
</target>
<target name="prepare-gwt">
<antcall target="openbis.do-prepare-gwt">
<param name="module-test.module" value="ch.systemsx.cisd.openbis.plugin.proteomics.OpenBIS" />
</antcall>
</target>
<target name="compile-and-run-openbis-proteomics-from-eclipse"
description="Compile and run the proteomics openbis from Eclipse">
......
......@@ -210,6 +210,12 @@
-->
<target name="prepare-gwt-with-image-viewer" depends="prepare-gwt, jar"/>
<target name="prepare-gwt">
<antcall target="openbis.do-prepare-gwt">
<param name="module-test.module" value="ch.systemsx.cisd.openbis.plugin.screening.OpenBIS" />
</antcall>
</target>
<target name="jar" depends="openbis.jar">
<property name="dist.file.name"
value="${ant.project.name}-${version.number}-r${revision.number}" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment