vivo/build.xml

46 lines
1.3 KiB
XML
Raw Normal View History

<?xml version="1.0"?>
<!-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<!-- ======================================================================
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 &quot;${deploy.properties.file}&quot; 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" />
</project>