VIVO-400 - the deploySolr task must be visible in product-build.xml, so a second-layer product like CornellVivo can execute it.

This commit is contained in:
j2blake 2011-08-12 19:48:32 +00:00
parent fd585b15f3
commit 8ea5f692fc

View file

@ -214,13 +214,22 @@
</java>
</target>
<!-- - - - - - - - - - - - - - - - - -
target: deploySolr
This must be visible so a second-level product like CornellVivo can call it.
- - - - - - - - - - - - - - - - - -->
<target name="deploySolr" >
<innercall target="deploySolr" />
</target>
<!-- =================================
target: deploy
================================= -->
<target name="deploy" description="--> Build the app and install in Tomcat">
<!-- the inner "deploy" would just do a sync that will be done by productDeploy -->
<innercall target="revisionInfo" />
<innercall target="deploySolr" />
<antcall target="deploySolr" />
<antcall target="productDeploy" />
</target>