| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:git="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/git/git.xsd"
- xmlns:p5xsl="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/xsl_interface/xsl_interface.xsd"
- basedir="../../."
- default="PRODUCT"
- name="git.PRODUCT">
- <description>p5suis:say Created function git with prefix git by p5ant module</description>
- <tstamp>
- <format property="git.last.minute" pattern="MM/dd/yyyy hh:mm a" offset="-1" unit="minute" timezone="UTC"/>
- <format property="p5dg.truncate_queue_if_spammed.condition.timestamp" pattern="MM/dd/yyyy hh:mm a" offset="-10000" unit="minute"/>
- <format property="p5dg:current.timestamp" pattern="yyyy-dd-MM-hh-mm-a" />
- </tstamp>
- <include as="WPS_Functions" file="../build.WPS_Functions.PRODUCT.xml"/>
- <condition property="git.PRODUCT.ifdef.parent" taskname="git.parent.PRODUCT.ifdef">
- <isset property="WPS_Functions.PRODUCT.name"/>
- </condition>
- <property name="git.PRODUCT.name" value="${WPS_Functions.PRODUCT.name}.git"/>
- <property name="git.PRODUCT.vendor-domain"
- value="${WPS_Functions.PRODUCT.name}.git"/>
- <property name="git.basedir" value="${WPS_Functions.basedir}/git"/>
- <property name="git.build.xml" value="${git.basedir}/build_git.xml"/>
- <property name="git.repository" value="${WPS_Functions.repository}/git"/>
- <property name="git.install" value="${git.basedir}/install"/>
- <property location="${WPS_Functions.temp}/git" name="git.temp"/>
- <property location="${git.basedir}/git.xsl" name="git.xsl"/>
- <property location="${git.basedir}/git.xsd" name="git.xsd"/>
- <property location="${git.basedir}/git.include.structure.xml"
- name="git.include.structure.xml"/>
- <property location="${git.basedir}/git.include.xsl.p5xsls.xml"
- name="git.include.xsl.p5xsls.xml"/>
- <property location="${git.repository}/install_example.file"
- name="git.install_example"/>
- <target depends="basedir,p5xsls.xml"
- description="to create basedir, includes and install"
- name="PRODUCT"/>
-
-
-
- <property name="gitlogxml.sh" location="${git.basedir}/gitlogxml.sh"/> <!-- script to generate xml from git -->
-
- <target description="to create local dirs" name="basedir">
- <propertyset id="git.local.properties">
- <propertyref prefix="git"/>
- <mapper from="git.*" to="local.*" type="glob"/>
- </propertyset>
- <antcall inheritall="false" target="WPS_Functions.basedir.p5bws:dirs">
- <propertyset refid="git.local.properties"/>
- </antcall>
- </target>
- <target description="To delete all temp and repository" name="clean">
- <antcall inheritall="false" target="WPS_Functions.basedir.p5bws:dirs.clean">
- <propertyset refid="git.local.properties"/>
- </antcall>
- </target>
- <target description="To delete all temp and repository" name="clean.temp">
- <antcall inheritall="false"
- target="WPS_Functions.basedir.p5bw.p5bws:dirs.temp.clean">
- <propertyset refid="git.local.properties"/>
- </antcall>
- </target>
- <target name="parent.PRODUCT.ifdef"
- unless="git.WPS_Functions.PRODUCT.ifdef.parent">
- <fail>There is not set correct parent PRODUCT from expected file="../build.WPS_Functions.PRODUCT.xml"</fail>
- </target>
- <target name="p5xsls.xml" depends="basedir">
- <description>
- TODO to be fixed by xslt to allow dynamic create of multi include xsl templates
- </description>
- <echoxml namespacepolicy="elementsOnly" file="${git.include.xsl.p5xsls.xml}">
- <stylesheet_buildlist xmlns="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/xsl_interface/xsl_interface.xsd">
- <namespaces.list>
- <namespaces.list.namespace prefix="git"
- namespace="http://biuro.biall-net.pl/xmlschema_procesy5/WPS_Functions/git/git.xsd"/>
- </namespaces.list>
- <include.list>
- <include.list.href href="/Users/a.binder/procesy5-dita-templates-druki/xmlschema_procesy5/src-xmlschema/public_html/WPS_Functions/ant/p5ant.xsl"/>
- </include.list>
- </stylesheet_buildlist>
- </echoxml>
- </target>
- </project>
|