2010-01-29 22:12:41 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
|
|
|
|
2010-02-21 18:46:05 +00:00
|
|
|
<!-- ======================================================================
|
|
|
|
Build script for the VIVOweb product.
|
|
|
|
|
|
|
|
The deploy.properties file contains both build properties and runtime
|
|
|
|
properties.
|
|
|
|
|
|
|
|
The required build properties are:
|
|
|
|
vitroCore.dir
|
|
|
|
tomcat.home
|
|
|
|
webapp.name
|
|
|
|
====================================================================== -->
|
|
|
|
<project name="vivoweb" default="describe">
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Load the properties from deploy.properties.
|
|
|
|
-->
|
|
|
|
<property name="deploy.properties.file" location="deploy.properties" />
|
|
|
|
<fail message="You must create a "${deploy.properties.file}" file.">
|
|
|
|
<condition>
|
|
|
|
<not>
|
|
|
|
<available file="${deploy.properties.file}" />
|
|
|
|
</not>
|
|
|
|
</condition>
|
|
|
|
</fail>
|
|
|
|
<property file="${deploy.properties.file}" />
|
|
|
|
<fail unless="vitro.core.dir"
|
|
|
|
message="${deploy.properties.file} must contain a value for vitro.core.dir" />
|
|
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Set this property so the core themes will not be included in the build.
|
|
|
|
-->
|
|
|
|
<property name="skip.core.themes" value="true" />
|
|
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Now get the standard product-build file.
|
|
|
|
-->
|
|
|
|
<import file="${vitro.core.dir}/webapp/product-build.xml" />
|
2010-01-29 22:12:41 +00:00
|
|
|
|
|
|
|
</project>
|