| 1234567891011121314151617181920 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:ows="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/openwebspider/ows.xsd"
- basedir="../../."
- default="git"
- name="ows.from_git">
- <description>p5suis:say Created function openwebspider with prefix ows by p5ant module from_git</description>
- <include as="PRODUCT" file="build.ows.PRODUCT.xml"/>
- <property location="${ows.repository}/ows.git" name="ows.git"/>
- <property name="ows.git.url" value="https://github.com/shen139/openwebspider.git"/>
- <condition property="ows.git.if.exists">
- <available file="${ows.repository}/ows.git"/>
- </condition>
- <target depends="git" name="default"/>
- <target name="git" unless="ows.git.if.exists">
- <mkdir dir="${ows.git}"/>
- <exec dir="${ows.git}" executable="git">
- <arg line="clone ${ows.git.url}"/>
- </exec>
- </target>
- </project>
|