| 123456789101112131415161718 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="../../." default="INSTALL" name="apache_fop.INSTALL">
- <include file="build.apache_fop.PRODUCT.xml" />
- <include as="git" file="build.apache_fop.INSTALL.git.xml" optional="yes" />
- <include as="from_url" file="build.apache_fop.INSTALL.from_url.xml" optional="yes" />
- <property location="${apache_fop.install}/install_example.file" name="apache_fop.INSTALL.install_example" />
- <condition property="apache_fop.INSTALL.install_example.ifdef" taskname="INSTALL.install_example">
- <not>
- <available file="${apache_fop.repository}/install_example.file" />
- </not>
- </condition>
- <extension-point if="apache_fop.git.url" name="git" />
- <extension-point if="apache_fop.from_url.url" name="from_url" />
- <target depends="from_url,git,INSTALL.install_example" name="INSTALL" />
- <target if="apache_fop.INSTALL.install_example.ifdef" name="INSTALL.install_example">
- <copy file="${apache_fop.INSTALL.install_example}" tofile="${apache_fop.install_example}" />
- </target>
- </project>
|