| 1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="../../." default="INSTALL" name="send_email.INSTALL">
- <include file="build.send_email.PRODUCT.xml" />
- <property location="${send_email.install}/install_example.file" name="send_email.INSTALL.install_example" />
- <property location="${send_email.install}/javax.mail-1.6.1.jar" name="send_email.INSTALL.javax.mail-1.6.1.jar" />
-
- <!--<property name="send_email.INSTALL.sent.dir" location="/Library/WebServer/sent"/>-->
-
- <condition property="send_email.INSTALL.javax.mail-1.6.1.jar.ifdef" taskname="INSTALL.javax.mail-1.6.1.jar">
- <not>
- <available file="${ant.library.dir}/javax.mail-1.6.1.jar" />
- </not>
- </condition>
-
- <condition property="send_email.INSTALL.install_example.ifdef" taskname="INSTALL.install_example">
- <not>
- <available file="${send_email.repository}/install_example.file" />
- </not>
- </condition>
-
- <target depends="INSTALL.javax.mail-1.6.1.jar" name="INSTALL" />
- <target if="send_email.INSTALL.install_example.ifdef" name="INSTALL.install_example">
- <copy file="${send_email.INSTALL.install_example}" tofile="${send_email.install_example}" />
- </target>
-
- <target if="send_email.INSTALL.javax.mail-1.6.1.jar.ifdef" name="INSTALL.javax.mail-1.6.1.jar">
- <copy file="${send_email.INSTALL.javax.mail-1.6.1.jar}" tofile="${ant.library.dir}/javax.mail-1.6.1.jar" />
- </target>
-
-
-
- </project>
|