| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="../../." name="p5dg.PRODUCT">
-
- <include file="../build.WPS_Functions.PRODUCT.xml" as="WPS_Functions"/>
-
- <condition property="p5dg.PRODUCT.ifdef.parent" taskname="parent.PRODUCT.ifdef">
- <isset property="WPS_Functions.PRODUCT.name"/>
- </condition>
-
-
- <property name="p5dg.PRODUCT.name" value="${WPS_Functions.PRODUCT.name}.documentation_generator"/>
- <property name="p5dg.PRODUCT.vendor-domain" value="${p5build_SE.PRODUCT.vendor-domain}"/>
-
- <property name="p5dg.basedir" value="${WPS_Functions.basedir}/documentation_generator"/>
- <property name="p5dg.repository" value="${p5dg.basedir}/repository"/>
- <property name="p5dg.temp" location="${p5dg.basedir}/temp"/>
-
- <property name="p5dg.childproperties" location="${WPS_Functions.childproperties}/build_documentation_generator.properties"/>
-
- <!--<property name="p5suis.pid" location="${p5suis.repository}/p5suis.speech.pid"/>-->
-
- <!--
- <property name="p5dg.StandardOutPath" location="${p5build_SE.SYSTEM.StandardOutPath}/${p5dg.PRODUCT.name}.log"/>
- <property name="p5dg.StandardErrorPath" location="${p5build_SE.SYSTEM.StandardErrorPath}/${p5dg.PRODUCT.name}.log"/>
- -->
-
- <target name="basedir" description="to create local dirs">
- <propertyset id="p5dg.local.properties">
- <propertyref prefix="p5dg"/>
- <mapper type="glob" from="p5dg.*" to="local.*"/>
- </propertyset>
- <antcall target="WPS_Functions.basedir.p5bws:dirs" inheritall="false">
- <propertyset refid="p5dg.local.properties"/>
- </antcall>
- </target>
-
- <target name="clean" description="To delete all temp and repository">
- <antcall target="WPS_Functions.basedir.p5bws:dirs.clean" inheritall="false">
- <propertyset refid="p5dg.local.properties"/>
- </antcall>
- </target>
-
-
- <target name="clean.temp" description="To delete all temp and repository">
- <antcall target="WPS_Functions.basedir.p5bw.p5bws:dirs.temp.clean" inheritall="false">
- <propertyset refid="p5dg.local.properties"/>
- </antcall>
- </target>
-
- <target name="parent.PRODUCT.ifdef" unless="WPS_Functions.PRODUCT.ifdef.parent">
- <fail>There is not set correct parent PRODUCT from expected file="../build.WPS_Functions.PRODUCT.xml" </fail>
- </target>
-
- </project>
|